interface Embed {
    author?: EmbedAuthor;
    color?: number;
    description?: string;
    fields?: EmbedField[];
    footer?: EmbedFooter;
    image?: EmbedImage;
    provider?: EmbedProvider;
    thumbnail?: EmbedImage;
    timestamp?: string;
    title?: string;
    type?: EmbedType;
    url?: string;
    video?: EmbedVideo;
}

Hierarchy (view full)

Properties

author?: EmbedAuthor
color?: number
description?: string
fields?: EmbedField[]
footer?: EmbedFooter
image?: EmbedImage
provider?: EmbedProvider
thumbnail?: EmbedImage
timestamp?: string
title?: string
type?: EmbedType
url?: string
video?: EmbedVideo