buncid/dist/utils/kill-child.d.ts
Benjamin Toby 1c26586478 Updates
2025-01-16 09:28:46 +01:00

8 lines
304 B
TypeScript

import { ChildProcess } from "child_process";
/**
* ## Kill Child Process Function
* @param {string | number | (string | number)[]} [port]
* @returns {Promise<boolean>}
*/
export default function killChild(childProcess?: ChildProcess, port?: string | number | (string | number)[]): Promise<boolean>;