UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

12 lines (11 loc) 303 B
/// <reference types="node" /> 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; }