import { Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { addSignalListener } = Deno;
Registers the given function as a listener of the given signal event.
Deno.addSignalListener(
"SIGTERM",
() => {
console.log("SIGTERM!")
}
);
Note: On Windows only "SIGINT"
(CTRL+C) and "SIGBREAK"
(CTRL+Break)
are supported.
Parameters
signal: Signal