UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

9 lines (8 loc) 178 B
export interface Command { aliases: string[]; command: string; commandDesc: string; handler: (argv: any) => void; options: any; subCommands: Command[]; }