UNPKG

advanced-command-handler

Version:

A package to help you create a bot with only 1 main file, directories for your events/commands, with some helpers classes and functions.

10 lines (9 loc) 280 B
import { Command, CommandContext } from '../../classes'; export declare class PingCommand extends Command { category: string; description: string; name: string; tags: string[]; userPermissions: string[]; run(ctx: CommandContext): Promise<void>; }