UNPKG

clipanion

Version:

Type-safe CLI library / framework with no runtime dependencies

11 lines (10 loc) 244 B
import { Command } from '../Command'; /** * A command that prints the usage of all commands. * * Paths: `-h`, `--help` */ export declare class HelpCommand extends Command<any> { static paths: string[][]; execute(): Promise<void>; }