UNPKG

nx

Version:

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

8 lines (7 loc) 290 B
import type { ChildProcess } from 'node:child_process'; /** * Kill `cp` (and its descendants) when this process exits, unless it has * already exited on its own. */ export declare function killChildOnHostExit(cp: ChildProcess): void; export declare function killTrackedChildren(): void;