From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001
From: sowgro <tpoke.ferrari@gmail.com>
Date: Sat, 2 Sep 2023 19:12:47 -0400
Subject: first commit

---
 .../src/structures/StringSelectMenuComponent.js      | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 node_modules/discord.js/src/structures/StringSelectMenuComponent.js

(limited to 'node_modules/discord.js/src/structures/StringSelectMenuComponent.js')

diff --git a/node_modules/discord.js/src/structures/StringSelectMenuComponent.js b/node_modules/discord.js/src/structures/StringSelectMenuComponent.js
new file mode 100644
index 0000000..e008ae5
--- /dev/null
+++ b/node_modules/discord.js/src/structures/StringSelectMenuComponent.js
@@ -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;
-- 
cgit v1.2.3