const { ChatInputCommandInteraction, SlashCommandBuilder, PermissionFlagsBits,
ActionRowBuilder, ButtonBuilder, ButtonStyle, EmbedBuilder } =
require("[Link]");
[Link] = {
developer: true,
data: new SlashCommandBuilder()
.setName("verify")
.setDescription("Comando para verificarse")
.setDefaultMemberPermissions([Link]),
/**
*
* @param {ChatInputCommandInteraction} interaction
*/
async execute(interaction) {
const button = new ActionRowBuilder().addComponents(
new ButtonBuilder()
.setCustomId(`ver`).setLabel(`Verify`).setStyle([Link]),
);
const embed = new EmbedBuilder()
.setTitle(`Verifícate pulsando el botón`)
.setImage(`[Link]
1008457294553563167/1057310773782773820/[Link]`)
await [Link]({embeds: [embed], components: [button] });
},
};