Interface IEmbed

interface IEmbed {
    author?: IAuthor;
    color?: number;
    description?: string;
    fields?: IField[];
    footer?: IFooter;
    image?: IImage;
    provider?: IProvider;
    thumbnail?: IThumbnail;
    timestamp?: string;
    title?: string;
    type?: "rich";
    url?: string;
    video?: IVideo;
}

Properties

author?: IAuthor
color?: number
description?: string
fields?: IField[]
footer?: IFooter
image?: IImage
provider?: IProvider
thumbnail?: IThumbnail
timestamp?: string
title?: string
type?: "rich"
url?: string
video?: IVideo

Generated using TypeDoc