wrapper funcs

This commit is contained in:
Erik 2022-05-10 21:39:43 +03:00
parent f3d330ef6d
commit cbcc3131d5
Signed by untrusted user: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB

View File

@ -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;