Type Alias EmbedThumbnail

EmbedThumbnail: {
    height?: number;
    proxyUrl?: string;
    url: string;
    width?: number;
}

Represents a thumbnail image in an embed.

Type declaration

  • Optionalheight?: number
    • The height of the thumbnail image, specified as an integer.
  • OptionalproxyUrl?: string
    • A proxy URL of the thumbnail image.
  • url: string
    • The URL of the thumbnail image.
  • Optionalwidth?: number
    • The width of the thumbnail image, specified as an integer.