Web utility
    Preparing search index...

    Interface HTMLInputProps

    interface HTMLInputProps {
        onundefined?: (event: unknown) => any;
        type?:
            | "number"
            | "search"
            | "reset"
            | "submit"
            | "text"
            | "button"
            | "time"
            | "color"
            | "hidden"
            | "password"
            | "email"
            | "tel"
            | "checkbox"
            | "date"
            | "datetime-local"
            | "file"
            | "month"
            | "radio"
            | "range"
            | "url"
            | "week";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    onundefined?: (event: unknown) => any
    type?:
        | "number"
        | "search"
        | "reset"
        | "submit"
        | "text"
        | "button"
        | "time"
        | "color"
        | "hidden"
        | "password"
        | "email"
        | "tel"
        | "checkbox"
        | "date"
        | "datetime-local"
        | "file"
        | "month"
        | "radio"
        | "range"
        | "url"
        | "week"

    The type property of the HTMLInputElement interface indicates the kind of data allowed in the element, for example a number, a date, or an email. Browsers will select the appropriate widget and behavior to help users to enter a valid value.

    MDN Reference