Embed
Available Builders
Section titled “Available Builders”import { // Main makeEmbed, // Child makeEmbedFooter, makeEmbedImage, makeEmbedVideo, makeEmbedProvider, makeEmbedAuthor, makeEmbedField,} from 'discord-hono'import { DiscordHono, makeEmbed } from 'discord-hono'
const app = new DiscordHono().command('embed', c => c.res({ embeds: [makeEmbed().title('Title').description('Content')], }),)If your editor supports autocompletion, typing . will show a list of available methods.
For details on each method, please refer to the Official Docs.