diff options
Diffstat (limited to 'node_modules/discord.js/src/structures/ButtonInteraction.js')
-rw-r--r-- | node_modules/discord.js/src/structures/ButtonInteraction.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/discord.js/src/structures/ButtonInteraction.js b/node_modules/discord.js/src/structures/ButtonInteraction.js new file mode 100644 index 0000000..db57592 --- /dev/null +++ b/node_modules/discord.js/src/structures/ButtonInteraction.js @@ -0,0 +1,11 @@ +'use strict'; + +const MessageComponentInteraction = require('./MessageComponentInteraction'); + +/** + * Represents a button interaction. + * @extends {MessageComponentInteraction} + */ +class ButtonInteraction extends MessageComponentInteraction {} + +module.exports = ButtonInteraction; |