UNPKG

@cdwr/core

Version:

A set of core utilities for the Codeware ecosystem.

7 lines (6 loc) 241 B
import { SignalConstants } from 'os'; /** * Kill all the descendent processes of the process pid, * including the process pid itself. */ export declare const killProcessTree: (pid: number, signal: keyof SignalConstants) => Promise<void>;