@wilcosp/rex
Version:
Rex is an automated command manager for discord js
16 lines (15 loc) • 733 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 { RexMessageContextmenuInteraction } from "../interactions/context/message.js";
import { RexContextMenuCommand } from "./contextMenuCommand.js";
export declare class RexMessageContextmenuCommand extends RexContextMenuCommand<RexMessageContextmenuInteraction> {
/**
* create a message context command
* @param name name of this message context command
* @param description description for this context menu command for a help command
*/
constructor(name: string, description?: string);
}