@@ -18668,7 +18668,7 @@ interface WindowEventHandlersEventMap {
18668
18668
"pagehide": PageTransitionEvent;
18669
18669
"pageshow": PageTransitionEvent;
18670
18670
"popstate": PopStateEvent;
18671
- "rejectionhandled": Event ;
18671
+ "rejectionhandled": PromiseRejectionEvent ;
18672
18672
"storage": StorageEvent;
18673
18673
"unhandledrejection": PromiseRejectionEvent;
18674
18674
"unload": Event;
@@ -18687,7 +18687,7 @@ interface WindowEventHandlers {
18687
18687
onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
18688
18688
onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
18689
18689
onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
18690
- onrejectionhandled: ((this: WindowEventHandlers, ev: Event ) => any) | null;
18690
+ onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent ) => any) | null;
18691
18691
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
18692
18692
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
18693
18693
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
@@ -19939,7 +19939,7 @@ declare var ononline: ((this: Window, ev: Event) => any) | null;
19939
19939
declare var onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
19940
19940
declare var onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
19941
19941
declare var onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
19942
- declare var onrejectionhandled: ((this: Window, ev: Event ) => any) | null;
19942
+ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent ) => any) | null;
19943
19943
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
19944
19944
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
19945
19945
declare var onunload: ((this: Window, ev: Event) => any) | null;
0 commit comments