Interface ITextInput

interface ITextInput {
    customId: string;
    label: string;
    maxLength: null | number;
    minLength: null | number;
    placeholder: null | string;
    required: null | boolean;
    style: TextInputStyle;
    value: null | string;
}

Implemented by

Properties

customId: string
label: string
maxLength: null | number
minLength: null | number
placeholder: null | string
required: null | boolean
value: null | string

Generated using TypeDoc