@ayanaware/bentocord
Version:
Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.
16 lines (15 loc) • 644 B
TypeScript
import { ComponentAPI } from '@ayanaware/bento';
import { AnyCommandContext } from '../../commands/CommandContext';
import { CommandManager } from '../../commands/CommandManager';
import { CommandDefinition } from '../../commands/interfaces/CommandDefinition';
import { CommandEntity } from '../../commands/interfaces/entity/CommandEntity';
export declare class ReplyCommand implements CommandEntity {
name: string;
api: ComponentAPI;
parent: typeof CommandManager;
private readonly pm;
definition: CommandDefinition;
execute(ctx: AnyCommandContext, { response }: {
response: string;
}): Promise<unknown>;
}