UNPKG

322 BTypeScriptView Raw
1import { BaseCommand } from '../BaseCommand';
2import { CommandContract } from '../Contracts';
3/**
4 * The help command for print the help output
5 */
6export declare class HelpCommand extends BaseCommand implements CommandContract {
7 static commandName: string;
8 static description: string;
9 run(): Promise<void>;
10}