forked from DefinitelyTyped/DefinitelyTyped
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
66 lines (58 loc) · 2.52 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Internal types to define function parameters.
type DoneCallback = () => void;
type BaseHookFunction = (done: DoneCallback) => void;
type ExceptionHookFunction = (error: Error, done: DoneCallback) => void;
type EventFilterFunction = (...args: any[]) => boolean;
/**
* Adds a basic hook which gets called on all exits.
*
* @param hook Function which will be called on exit.
* If a `done` function is present as a parameter, the program will not exit until
* the `done` function gets called, allowing asynchronous actions to take place.
*/
declare function AsyncExitHook(hook: BaseHookFunction): void;
declare namespace AsyncExitHook {
/**
* Adds a hook which gets called specifically on uncaught exceptions.
*
* @param hook Function which will be called on exit
* optionally containing the uncaught exception error.
* If a `done` function is present as a parameter, the program will not exit until
* the `done` function gets called, allowing asynchronous actions to take place.
*/
function uncaughtExceptionHandler(hook: ExceptionHookFunction): void;
/**
* Adds a hook which gets called specifically on unhandled promise rejections.
*
* @param hook Function which will be called on exit
* optionally containing the unhandled promise rejection error.
* If a `done` function is present as a parameter, the program will not exit until
* the `done` function gets called, allowing asynchronous actions to take place.
*/
function unhandledRejectionHandler(hook: ExceptionHookFunction): void;
/**
* Lists all hooked event names.
*/
function hookedEvents(): string[];
/**
* Unhooks an event and its filters.
*
* @param event The name of the event to unhook.
*/
function unhookEvent(event: string | symbol): void;
/**
* Adds a event/code/function filter for the basic exit hook.
*
* @param event The event name emitted to listen to (`process.emit(event)`).
* @param code The exit code emitted to listen to (`process.emit(event, code)`).
* @param filter A custom filter function which takes all parameters passed to `process.emit` excluding the event name (`process.emit(event, *parameters*)`).
*/
function hookEvent(event: string | symbol, code: number, filter?: EventFilterFunction): void;
/**
* Overwrites the internal asynchronous hook method timeout time.
*
* @param time New timeout time in `ms`.
*/
function forceExitTimeout(time: number): void;
}
export = AsyncExitHook;