tiny-bin
Version:
A library for building tiny and beautiful command line apps.
10 lines (9 loc) • 308 B
TypeScript
import Command from './command.js';
import type Bin from './bin.js';
import type { ParsedArgs } from 'tiny-parse-argv';
declare class CommandHelp extends Command {
constructor(bin: Bin);
private getPrintMode;
run(options: ParsedArgs, argv: string[]): Promise<void>;
}
export default CommandHelp;