@types/signal-exit
TypeScript icon, indicating that this package has built-in type declarations

3.0.4 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/signal-exit

Weekly Downloads

56,435

Version

3.0.4

License

MIT

Unpacked Size

3.49 kB

Total Files

5

Last publish

Collaborators

  • types