@ayanaware/bentocord
Version:
Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.
14 lines (13 loc) • 547 B
TypeScript
import { ComponentAPI } from '@ayanaware/bento';
import { AnyCommandContext } from '../CommandContext';
import { CommandManager } from '../CommandManager';
import { CommandDefinition } from '../interfaces/CommandDefinition';
import { CommandEntity } from '../interfaces/entity/CommandEntity';
export declare class PingCommand implements CommandEntity {
name: string;
api: ComponentAPI;
parent: typeof CommandManager;
replaceable: boolean;
definition: CommandDefinition;
execute(ctx: AnyCommandContext): Promise<unknown>;
}