UNPKG

linkup-bot-lib

Version:

13 lines (12 loc) 366 B
import { Client } from "./Client"; import { TextMessage } from "./message/TextMessage"; export declare class Command { options: ICommandOption; constructor(options: ICommandOption); handler(bot: Client, message: TextMessage, args: string[]): void; } export interface ICommandOption { name: string; description?: string; aliases?: string[]; }