commit
This commit is contained in:
parent
a15c733e45
commit
2a5130cbda
2838 changed files with 288613 additions and 0 deletions
20
node_modules/discord.js/src/structures/StringSelectMenuComponent.js
generated
vendored
Normal file
20
node_modules/discord.js/src/structures/StringSelectMenuComponent.js
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
'use strict';
|
||||
|
||||
const BaseSelectMenuComponent = require('./BaseSelectMenuComponent');
|
||||
|
||||
/**
|
||||
* Represents a string select menu component
|
||||
* @extends {BaseSelectMenuComponent}
|
||||
*/
|
||||
class StringSelectMenuComponent extends BaseSelectMenuComponent {
|
||||
/**
|
||||
* The options in this select menu
|
||||
* @type {APISelectMenuOption[]}
|
||||
* @readonly
|
||||
*/
|
||||
get options() {
|
||||
return this.data.options;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = StringSelectMenuComponent;
|
Loading…
Add table
Add a link
Reference in a new issue