UNPKG

296 BTypeScriptView Raw
1import { Command, Option } from '../models/command';
2export default class AwesomeCommand extends Command {
3 readonly name: string;
4 readonly description: string;
5 readonly hidden: boolean;
6 readonly arguments: string[];
7 readonly options: Option[];
8 run(_options: any): void;
9}