Skip to content

Embed

import { DiscordHono, Embed } from 'discord-hono'
const app = new DiscordHono().command('embed', c =>
c.res({
embeds: [new Embed().title('Title').description('description')],
}),
)

Method

const embed = new Embed()
.title()
.type()
.description()
.url()
.timestamp()
.color()
.footer()
.image()
.thumbnail()
.video()
.provider()
.author()
.fields()

Please refer to the Official Docs.