gluon
    Preparing search index...

    Class TextInput

    Helps to construct a text input interaction.

    Implements

    • TextInputBuilder
    Index

    Constructors

    Properties

    custom_id: undefined | string
    label: undefined | string
    max_length: undefined | number
    min_length: undefined | number
    placeholder: undefined | string
    required: undefined | boolean
    style: undefined | TextInputStyle
    type: TextInput
    value: undefined | string

    Methods

    • Returns the correct Discord format for a text input.

      Parameters

      • Optionalformat: JsonTypes
      • __namedParameters: { suppressValidation?: boolean } = ...

      Returns {
          custom_id: string;
          label: string;
          max_length: undefined | number;
          min_length: undefined | number;
          placeholder: undefined | string;
          style: TextInputStyle;
          type: TextInput;
          value: undefined | string;
      }