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/**
* @flow strict
* @format
*/
declare module 'promise/setimmediate/es6-extensions' {
declare module.exports: typeof Promise;
}
declare module 'promise/setimmediate/done' {
declare module.exports: typeof Promise;
}
declare module 'promise/setimmediate/finally' {
declare module.exports: typeof Promise;
}
declare module 'promise/setimmediate/rejection-tracking' {
declare module.exports: {
enable: (
options?: ?{
whitelist?: ?Array<unknown>,
allRejections?: ?boolean,
onUnhandled?: ?(number, unknown) => void,
onHandled?: ?(number, unknown) => void,
},
) => void,
disable: () => void,
};
}