Sha256: 1d63579e68cf6fc4b8a5ae13748efe38584f8eea7dddc320c276b30b1856d0b0

Contents?: true

Size: 1.7 KB

Versions: 128

Compression:

Stored size: 1.7 KB

Contents

/// <reference types="node" />
import { signals } from './signals.js';
export { signals };
/**
 * A function that takes an exit code and signal as arguments
 *
 * In the case of signal exits *only*, a return value of true
 * will indicate that the signal is being handled, and we should
 * not synthetically exit with the signal we received. Regardless
 * of the handler return value, the handler is unloaded when an
 * otherwise fatal signal is received, so you get exactly 1 shot
 * at it, unless you add another onExit handler at that point.
 *
 * In the case of numeric code exits, we may already have committed
 * to exiting the process, for example via a fatal exception or
 * unhandled promise rejection, so it is impossible to stop safely.
 */
export type Handler = (code: number | null | undefined, signal: NodeJS.Signals | null) => true | void;
export declare const 
/**
 * Called when the process is exiting, whether via signal, explicit
 * exit, or running out of stuff to do.
 *
 * If the global process object is not suitable for instrumentation,
 * then this will be a no-op.
 *
 * Returns a function that may be used to unload signal-exit.
 */
onExit: (cb: Handler, opts?: {
    alwaysLast?: boolean | undefined;
} | undefined) => () => void, 
/**
 * Load the listeners.  Likely you never need to call this, unless
 * doing a rather deep integration with signal-exit functionality.
 * Mostly exposed for the benefit of testing.
 *
 * @internal
 */
load: () => void, 
/**
 * Unload the listeners.  Likely you never need to call this, unless
 * doing a rather deep integration with signal-exit functionality.
 * Mostly exposed for the benefit of testing.
 *
 * @internal
 */
unload: () => void;
//# sourceMappingURL=index.d.ts.map

Version data entries

128 entries across 52 versions & 3 rubygems

Version Path
immosquare-cleaner-0.1.51 node_modules/foreground-child/node_modules/signal-exit/dist/cjs/index.d.ts
immosquare-cleaner-0.1.51 node_modules/signal-exit/dist/cjs/index.d.ts
immosquare-cleaner-0.1.51 node_modules/foreground-child/node_modules/signal-exit/dist/mjs/index.d.ts
immosquare-cleaner-0.1.51 node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.26 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
clapton-0.0.26 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.25 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.25 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
immosquare-cleaner-0.1.50 node_modules/foreground-child/node_modules/signal-exit/dist/mjs/index.d.ts
immosquare-cleaner-0.1.50 node_modules/signal-exit/dist/cjs/index.d.ts
immosquare-cleaner-0.1.50 node_modules/foreground-child/node_modules/signal-exit/dist/cjs/index.d.ts
immosquare-cleaner-0.1.50 node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.24 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
clapton-0.0.24 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.23 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.23 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
clapton-0.0.22 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
clapton-0.0.22 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts
clapton-0.0.21 lib/clapton/javascripts/node_modules/signal-exit/dist/cjs/index.d.ts
clapton-0.0.21 lib/clapton/javascripts/node_modules/signal-exit/dist/mjs/index.d.ts