UNPKG

244 BTypeScriptView Raw
1import { Command } from '../Command';
2/**
3 * A command that prints the usage of all commands.
4 *
5 * Paths: `-h`, `--help`
6 */
7export declare class HelpCommand extends Command<any> {
8 static paths: string[][];
9 execute(): Promise<void>;
10}