summaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/structures/ButtonInteraction.js
blob: db57592a661b3613710ce48370d9f718bd35d4ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

const MessageComponentInteraction = require('./MessageComponentInteraction');

/**
 * Represents a button interaction.
 * @extends {MessageComponentInteraction}
 */
class ButtonInteraction extends MessageComponentInteraction {}

module.exports = ButtonInteraction;