The name of the embed
The data of the embed (builder or raw)
module.exports.default = new Embed('welcome', {
color: 0x5865f2,
title: 'Welcome',
description: 'Greetings! Welcome to my server.'
});
module.exports.default = new Embed(
'welcome',
new EmbedBuilder()
.setColor(0x5865f2)
.setTitle('Welcome')
.setDescription('Greetings! Welcome to my server.')
);
The data of the embed (builder or raw)
The name of the embed
Generated using TypeDoc
Represents an embed component