mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
feat(MessageSelectMenu): droppybois (#5692)
Co-authored-by: Antonio Román <kyradiscord@gmail.com>
This commit is contained in:
@@ -944,9 +944,10 @@ exports.InteractionResponseTypes = createEnum([
|
||||
* The type of a message component
|
||||
* * ACTION_ROW
|
||||
* * BUTTON
|
||||
* * SELECT_MENU
|
||||
* @typedef {string} MessageComponentType
|
||||
*/
|
||||
exports.MessageComponentTypes = createEnum([null, 'ACTION_ROW', 'BUTTON']);
|
||||
exports.MessageComponentTypes = createEnum([null, 'ACTION_ROW', 'BUTTON', 'SELECT_MENU']);
|
||||
|
||||
/**
|
||||
* The style of a message button
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
* * **`CommandInteraction`**
|
||||
* * **`ButtonInteraction`**
|
||||
* * **`StageInstance`**
|
||||
* * **`SelectMenuInteraction`**
|
||||
* @typedef {string} ExtendableStructure
|
||||
*/
|
||||
|
||||
@@ -118,6 +119,7 @@ const structures = {
|
||||
User: require('../structures/User'),
|
||||
CommandInteraction: require('../structures/CommandInteraction'),
|
||||
ButtonInteraction: require('../structures/ButtonInteraction'),
|
||||
SelectMenuInteraction: require('../structures/SelectMenuInteraction'),
|
||||
StageInstance: require('../structures/StageInstance'),
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user