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