gluon
    Preparing search index...

    Class Button

    Helps to construct a button for a message.

    Implements

    • ButtonBuilder
    Index

    Constructors

    Properties

    custom_id: undefined | string
    disabled: undefined | boolean
    emoji: undefined | ResolvedEmoji
    label: undefined | string
    style: ButtonStyle = ButtonStyle.Primary
    type: Button = ComponentType.Button
    url: undefined | string

    Methods

    • Disables the button from being clickable.

      Parameters

      • disabled: boolean

        Whether this button should be displayed as disabled.

      Returns Button

    • Sets the emoji to be displayed on the button.

      Parameters

      • emoji: string

        The emoji to display on the button. For a custom emoji, it should be in the format "<:bitcoin:844240546246950922>".

      Returns Button

    • Returns the correct Discord format for a button.

      Parameters

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

      Returns {
          custom_id: undefined | string;
          disabled: undefined | boolean;
          emoji: undefined | ResolvedEmoji;
          label: undefined | string;
          style: ButtonStyle;
          type: Button;
          url: undefined | string;
      }