@wilcosp/rex
Version:
Rex is an automated command manager for discord js
12 lines (11 loc) • 457 B
JavaScript
import { ComponentType } from "discord-api-types/v10";
import { RexMentionSelectMenuInteraction } from "../interactions/components/mentionSelectMenu.js";
import { RexSelectMenuBase } from "./selectMenuBase.js";
export class RexMentionSelectMenuComponent extends RexSelectMenuBase {
constructor(data) {
super(data, ComponentType.MentionableSelect);
}
run(inter) {
return super.run(inter, RexMentionSelectMenuInteraction);
}
}