diff options
Diffstat (limited to 'cli/dts/lib.deno.shared_globals.d.ts')
-rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index abf5e41fb..fc40bb54e 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -400,17 +400,6 @@ declare class ErrorEvent extends Event { constructor(type: string, eventInitDict?: ErrorEventInit); } -interface PromiseRejectionEventInit extends EventInit { - promise: Promise<any>; - reason?: any; -} - -declare class PromiseRejectionEvent extends Event { - readonly promise: Promise<any>; - readonly reason: any; - constructor(type: string, eventInitDict?: PromiseRejectionEventInit); -} - interface AbstractWorkerEventMap { "error": ErrorEvent; } |