TenantAtlas/apps/platform/.pnpm-store/v10/files/9d/3c65dd5494d8492314a180c43aa93d70a6de0041519eb5e4922a2354113a9dab3867d0ad3b12cafaee1bf98795f89409f746dcd0712e16a930c4b53c9d8c2d
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

14 lines
381 B
Plaintext

/**
* 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;