UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

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