コンテンツにスキップ

Embed

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

Method

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

公式ドキュメントを参照してください。