It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
13
backend/node_modules/tree-kill/index.d.ts
generated
vendored
Normal file
13
backend/node_modules/tree-kill/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* 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;
|
Reference in New Issue
Block a user