firmament-yargs
Version:
Typescript classes for building CLI node applications
8 lines (7 loc) • 359 B
TypeScript
/// <reference types="node" />
import { ChildProcess } from 'child_process';
import { ChildProcessSpawn } from '../interfaces/child-process-spawn';
import { SpawnOptions2 } from '../custom-typings';
export declare class ChildProcessSpawnImpl implements ChildProcessSpawn {
spawn(command: string, args?: string[], options?: SpawnOptions2): ChildProcess;
}