UNPKG

@adonisjs/ace

Version:

Commandline apps framework used by AdonisJs

11 lines (10 loc) 322 B
import { BaseCommand } from '../BaseCommand'; import { CommandContract } from '../Contracts'; /** * The help command for print the help output */ export declare class HelpCommand extends BaseCommand implements CommandContract { static commandName: string; static description: string; run(): Promise<void>; }