UNPKG

@nx-dotnet/utils

Version:

This library was generated with [Nx](https://nx.dev).

7 lines (6 loc) 291 B
import * as cp from 'child_process'; /** * TypeScript typings think ChildProcess is an interface, its a class. */ export declare function isChildProcess(obj: any): obj is cp.ChildProcess; export declare function handleChildProcessPassthrough(childProcess: cp.ChildProcess): Promise<void>;