UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

17 lines (16 loc) 475 B
import { RunningTask } from './running-task'; export declare class NoopChildProcess implements RunningTask { private results; constructor(results: { code: number; terminalOutput: string; }); send(): void; getResults(): Promise<{ code: number; terminalOutput: string; }>; kill(): void; onExit(cb: (code: number, terminalOutput: string) => void): void; onOutput(cb: (terminalOutput: string) => void): void; }