Creates a new message context menu command
The options for the command
The callback for the command
module.exports.default = new MessageContextMenuCommand({
data: {
name: 'Quote'
},
cooldownSeconds: 2
}, async (client, interaction) => {
await interaction.reply(`> ${interaction.targetMessage.content}\n${interaction.targetMessage.author}`);
});
The callback for the command
The cooldowns of the command
The options for the command
Generated using TypeDoc
Represents a message context menu command