Skip to main content
method Deno.ChildProcess.prototype.kill
ChildProcess.prototype.kill(signo?: Signal): void
Deprecated

Kills the process with given Deno.Signal.

Defaults to SIGTERM if no signal is provided.

Parameters

optional
signo: Signal = "SIGTERM"

Return Type

void
Back to top