@pact-foundation/pact-node
Version:
Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.
11 lines (10 loc) • 401 B
TypeScript
/// <reference types="node" />
import { ChildProcess } from 'child_process';
import { SpawnArguments, ArgumentMappings } from './arguments';
export declare class Spawn {
get cwd(): string;
spawnBinary(command: string, args?: SpawnArguments, argMapping?: ArgumentMappings): ChildProcess;
killBinary(binary?: ChildProcess): boolean;
}
declare const _default: Spawn;
export default _default;