Interface RawTextInput

interface RawTextInput {
    custom_id: string;
    label: string;
    max_length?: number;
    min_length?: number;
    placeholder?: string;
    required?: boolean;
    style: TextInputStyles;
    type: TEXT_INPUT;
    value?: string;
}

Properties

custom_id: string
label: string
max_length?: number
min_length?: number
placeholder?: string
required?: boolean
value?: string