Type Alias EmbedImage

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

Represents an image in an embed.

Type declaration

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