1 | declare namespace Promise {
|
2 | interface PromisePolyfillConstructor extends PromiseConstructor {
|
3 | _immediateFn?: ((handler: (() => void) | string) => void) | undefined;
|
4 | }
|
5 | }
|
6 |
|
7 | declare const Promise: Promise.PromisePolyfillConstructor;
|
8 |
|
9 | export = Promise;
|
10 |
|
\ | No newline at end of file |