nodecid/dist/utils/kill-child.d.ts

7 lines
229 B
TypeScript
Raw Permalink Normal View History

2025-01-16 05:22:33 +00:00
/**
* ## Kill Child Process Function
* @param {string | number | (string | number)[]} [port]
* @returns {Promise<boolean>}
*/
export default function killChild(port?: string | number | (string | number)[]): Promise<boolean>;