Type Alias EmbedField

EmbedField: {
    inline?: boolean;
    name: string;
    value: string;
}

Represents a field within an embed.

Type declaration

  • Optionalinline?: boolean
    • Indicates whether the field should be displayed inline with other fields.
  • name: string
    • The name of the field, with a maximum length of 256 characters.
  • value: string
    • The value of the field, with a maximum length of 1024 characters.