UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

12 lines (11 loc) 286 B
import {Command} from "./command"; import {NestedYargs} from "./nested-yargs-wrapper"; export interface CommandLine { init(options?:any); addCommand(cmd:Command); printTable(rows:any[]); exec(unitTestArgs?:string[]); } export interface ConsoleEx extends Console { table:any }