Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/tree-kill/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/tree-kill/index.d.ts

/**
 * Kills process identified by `pid` and all its children
 *
 * @param pid
 * @param signal 'SIGTERM' by default
 * @param callback
 */
declare function treeKill(pid: number, callback?: (error?: Error) => void): void;
declare function treeKill(pid: number, signal?: string | number, callback?: (error?: Error) => void): void;

declare namespace treeKill {}

export = treeKill;