UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

7 lines (6 loc) 251 B
/// <reference types="node" /> import { ChildProcess } from 'child_process'; import { SpawnOptions2 } from "../custom-typings"; export interface ChildProcessSpawn { spawn(command: string, args?: string[], options?: SpawnOptions2): ChildProcess; }