Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IInput

    interface IInput {
        id: string;
        label?: string;
        placeholder?: string;
        type?:
            | "number"
            | "text"
            | "password"
            | "date"
            | "time"
            | "email"
            | "url"
            | "multiline";
        value?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string
    label?: string
    placeholder?: string
    type?:
        | "number"
        | "text"
        | "password"
        | "date"
        | "time"
        | "email"
        | "url"
        | "multiline"
    value?: string