import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.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