Interface ImageEmbedContextOptions

The options for setting an image in an embed to send in a context.

interface ImageEmbedContextOptions {
    ctx: CommandContext;
    description: string;
    link?: string;
    path?: string;
    title: string;
}

Hierarchy

Properties

The context where to send the image.

description: string

Description of the embed.

link?: string

Link of the image.

path?: string

Local path of the image.

title: string

Title of the embed.

Generated using TypeDoc