UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

11 lines (10 loc) 238 B
import {Command} from "./command"; export interface CommandLine { init(options?:any); addCommand(cmd:Command); printTable(rows:any[]); exec(unitTestArgs?:string[]); } export interface ConsoleEx extends Console { __table__:any }