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