@wilcosp/rex
Version:
Rex is an automated command manager for discord js
16 lines (15 loc) • 901 B
TypeScript
/*!
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { ChatInputCommandInteraction, ContextMenuCommandInteraction } from "discord.js";
import { ExtraCommandReplyInteractionOptions } from "../types/types.js";
import { RexReplyModalInteractionBase } from "./replyModalBase.js";
import { RexSlashInteractionOptionsResolver } from "./slashCommands/optionsResolver.js";
export declare class RexReplyOptionsInteractionBase extends RexReplyModalInteractionBase {
inter: ChatInputCommandInteraction | ContextMenuCommandInteraction;
private _options?;
constructor(inter: ChatInputCommandInteraction | ContextMenuCommandInteraction, opt?: ExtraCommandReplyInteractionOptions);
get options(): RexSlashInteractionOptionsResolver;
}