Interface TextInputComponentData

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

Hierarchy

  • Omit<OriginTextInputComponentData, "type">
    • TextInputComponentData

Properties

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