7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
![]() |
/**
|
||
|
* ## Kill Child Process Function
|
||
|
* @param {string | number | (string | number)[]} [port]
|
||
|
* @returns {Promise<boolean>}
|
||
|
*/
|
||
|
export default function killChild(port?: string | number | (string | number)[]): Promise<boolean>;
|