interface TextInputComponentData {
    customId: string;
    id?: number;
    label: string;
    maxLength?: number;
    minLength?: number;
    placeholder?: string;
    required?: boolean;
    style: TextInputStyle;
    type: TextInput;
    value?: string;
}

Hierarchy (View Summary)

Properties

customId: string
id?: number
label: string
maxLength?: number
minLength?: number
placeholder?: string
required?: boolean
type: TextInput
value?: string