UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

7 lines (5 loc) 214 B
import {ChildProcess} from 'child_process'; import {SpawnOptions2} from "../custom-typings"; export interface ChildProcessSpawn{ spawn(command: string, args?: string[], options?: SpawnOptions2): ChildProcess; }