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