@@ -18668,7 +18668,7 @@ interface WindowEventHandlersEventMap {
1866818668 "pagehide": PageTransitionEvent;
1866918669 "pageshow": PageTransitionEvent;
1867018670 "popstate": PopStateEvent;
18671- "rejectionhandled": Event ;
18671+ "rejectionhandled": PromiseRejectionEvent ;
1867218672 "storage": StorageEvent;
1867318673 "unhandledrejection": PromiseRejectionEvent;
1867418674 "unload": Event;
@@ -18687,7 +18687,7 @@ interface WindowEventHandlers {
1868718687 onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
1868818688 onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
1868918689 onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
18690- onrejectionhandled: ((this: WindowEventHandlers, ev: Event ) => any) | null;
18690+ onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent ) => any) | null;
1869118691 onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
1869218692 onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
1869318693 onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
@@ -19939,7 +19939,7 @@ declare var ononline: ((this: Window, ev: Event) => any) | null;
1993919939declare var onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
1994019940declare var onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
1994119941declare 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;
1994319943declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
1994419944declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
1994519945declare var onunload: ((this: Window, ev: Event) => any) | null;
0 commit comments