Type alias ITextInput

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

Type declaration

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

Generated using TypeDoc