@wilcosp/rex
Version:
Rex is an automated command manager for discord js
11 lines (10 loc) • 670 B
TypeScript
import { APIGuildMember, APIRole, Collection, GuildMember, MentionableSelectMenuInteraction, Role, User } from "discord.js";
import { ExtraCommandReplyInteractionOptions } from "../../types/types.js";
import { RexSelectMenuInteractionBase } from "./selectmenu.js";
export declare class RexMentionSelectMenuInteraction extends RexSelectMenuInteractionBase {
inter: MentionableSelectMenuInteraction;
constructor(inter: MentionableSelectMenuInteraction, opt?: ExtraCommandReplyInteractionOptions);
get users(): Collection<string, User>;
get members(): Collection<string, GuildMember | APIGuildMember>;
get roles(): Collection<string, Role | APIRole>;
}