UNPKG

288 BTypeScriptView Raw
1import CommandBase from '@anycli/command';
2import Engine from './engine';
3export default class Command extends CommandBase {
4 static type: string;
5 engine: Engine;
6 run(): Promise<void>;
7 protected commandNotFound(id: string): Promise<void>;
8 protected showHelp(): void;
9}