@wilcosp/rex
Version:
Rex is an automated command manager for discord js
20 lines (19 loc) • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RexMentionSelectMenuInteraction = void 0;
const selectmenu_js_1 = require("./selectmenu.js");
class RexMentionSelectMenuInteraction extends selectmenu_js_1.RexSelectMenuInteractionBase {
constructor(inter, opt) {
super(inter, opt);
}
get users() {
return this.inter.users;
}
get members() {
return this.inter.members;
}
get roles() {
return this.inter.roles;
}
}
exports.RexMentionSelectMenuInteraction = RexMentionSelectMenuInteraction;