From cbcc3131d585356d06f209b43d62743c6b0e2deb Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Tue, 10 May 2022 21:39:43 +0300 Subject: [PATCH] wrapper funcs --- src/structure/client/wrappers/InteractionWrapper.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/structure/client/wrappers/InteractionWrapper.js b/src/structure/client/wrappers/InteractionWrapper.js index 946329f..a07fcdf 100644 --- a/src/structure/client/wrappers/InteractionWrapper.js +++ b/src/structure/client/wrappers/InteractionWrapper.js @@ -195,6 +195,10 @@ class InteractionWrapper { return this.interaction.deferred; } + get values() { + return this.interaction.values; + } + isButton() { return this.interaction.isButton(); } @@ -211,6 +215,10 @@ class InteractionWrapper { return this.interaction.isContextMenu(); } + isSelectMenu() { + return this.interaction.isSelectMenu(); + } + } module.exports = InteractionWrapper; \ No newline at end of file