Installation
npm install --save @types/signal-exit
Summary
This package contains type definitions for signal-exit (https://github.com/tapjs/signal-exit).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/signal-exit.
index.d.ts
export = signalExit;
declare function signalExit(
callback: (code: number | null, signal: signalExit.Signal | null) => void,
options?: signalExit.Options,
): () => void;
declare namespace signalExit {
function load(): void;
function unload(): void;
function signals(): Signal[];
type Signal = "SIGABRT" | "SIGALRM" | "SIGHUP" | "SIGINT" | "SIGTERM" | string;
interface Options {
alwaysLast?: boolean | undefined;
}
}
Additional Details
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: none
Credits
These definitions were written by BendingBender.