UNPKG

445 BTypeScriptView Raw
1import { Aliases, CommandFlag, SerializedCommand } from '../Contracts';
2/**
3 * Prints help for all the commands by sorting them in alphabetical order
4 * and grouping them as per their namespace.
5 */
6export declare function printHelp(commands: SerializedCommand[], flags: CommandFlag[], aliases: Aliases): void;
7/**
8 * Prints help for a single command
9 */
10export declare function printHelpFor(command: SerializedCommand, aliases: Aliases): void;