@adonisjs/ace
Version:
Commandline apps framework used by AdonisJs
11 lines (10 loc) • 445 B
TypeScript
import { Aliases, CommandFlag, SerializedCommand } from '../Contracts';
/**
* Prints help for all the commands by sorting them in alphabetical order
* and grouping them as per their namespace.
*/
export declare function printHelp(commands: SerializedCommand[], flags: CommandFlag[], aliases: Aliases): void;
/**
* Prints help for a single command
*/
export declare function printHelpFor(command: SerializedCommand, aliases: Aliases): void;