* The `process.kill()` method sends the `signal` to the process identified by `pid`. * * Signal names are strings such as 'SIGINT' or 'SIGHUP'. See Signal Events and kill(2) * for more information. * * This method will throw an error if the target pid does not exist. As a sp
(pid: number, signal?: QuickJS.Signals | number)
| 221 | * |
| 222 | * @since v0.1.31 |
| 223 | * @param pid A process ID |
| 224 | * @param signal The signal to send, either as a string or number. Default: 'SIGTERM'. |
| 225 | */ |
| 226 | kill(pid: number, signal?: QuickJS.Signals | number): void; |
no outgoing calls
no test coverage detected