@@ -1953,7 +1953,7 @@ interface ApplicationCacheEventMap {
19531953 "error": Event;
19541954 "noupdate": Event;
19551955 "obsolete": Event;
1956- "progress": ProgressEvent;
1956+ "progress": ProgressEvent<ApplicationCache> ;
19571957 "updateready": Event;
19581958}
19591959
@@ -1971,7 +1971,7 @@ interface ApplicationCache extends EventTarget {
19711971 /** @deprecated */
19721972 onobsolete: ((this: ApplicationCache, ev: Event) => any) | null;
19731973 /** @deprecated */
1974- onprogress: ((this: ApplicationCache, ev: ProgressEvent) => any) | null;
1974+ onprogress: ((this: ApplicationCache, ev: ProgressEvent<ApplicationCache> ) => any) | null;
19751975 /** @deprecated */
19761976 onupdateready: ((this: ApplicationCache, ev: Event) => any) | null;
19771977 /** @deprecated */
@@ -4286,7 +4286,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap, DocumentAndEleme
42864286 "fullscreenerror": Event;
42874287 "pointerlockchange": Event;
42884288 "pointerlockerror": Event;
4289- "readystatechange": ProgressEvent;
4289+ "readystatechange": ProgressEvent<Document> ;
42904290 "visibilitychange": Event;
42914291}
42924292
@@ -4445,7 +4445,7 @@ interface Document extends Node, NonElementParentNode, DocumentOrShadowRoot, Par
44454445 * Fires when the state of the object has changed.
44464446 * @param ev The event
44474447 */
4448- onreadystatechange: ((this: Document, ev: ProgressEvent) => any) | null;
4448+ onreadystatechange: ((this: Document, ev: ProgressEvent<Document> ) => any) | null;
44494449 onvisibilitychange: ((this: Document, ev: Event) => any) | null;
44504450 /**
44514451 * Returns document's origin.
@@ -17241,9 +17241,9 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1724117241 "play": Event;
1724217242 "playing": Event;
1724317243 "popstate": PopStateEvent;
17244- "progress": ProgressEvent;
17244+ "progress": ProgressEvent<Window> ;
1724517245 "ratechange": Event;
17246- "readystatechange": ProgressEvent;
17246+ "readystatechange": ProgressEvent<Window> ;
1724717247 "reset": Event;
1724817248 "resize": UIEvent;
1724917249 "scroll": Event;
@@ -17327,7 +17327,7 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
1732717327 onmspointerup: ((this: Window, ev: Event) => any) | null;
1732817328 /** @deprecated */
1732917329 onorientationchange: ((this: Window, ev: Event) => any) | null;
17330- onreadystatechange: ((this: Window, ev: ProgressEvent) => any) | null;
17330+ onreadystatechange: ((this: Window, ev: ProgressEvent<Window> ) => any) | null;
1733117331 onvrdisplayactivate: ((this: Window, ev: Event) => any) | null;
1733217332 onvrdisplayblur: ((this: Window, ev: Event) => any) | null;
1733317333 onvrdisplayconnect: ((this: Window, ev: Event) => any) | null;
@@ -17679,13 +17679,13 @@ declare var XMLHttpRequest: {
1767917679};
1768017680
1768117681interface XMLHttpRequestEventTargetEventMap {
17682- "abort": ProgressEvent;
17683- "error": ProgressEvent;
17684- "load": ProgressEvent;
17685- "loadend": ProgressEvent;
17686- "loadstart": ProgressEvent;
17687- "progress": ProgressEvent;
17688- "timeout": ProgressEvent;
17682+ "abort": ProgressEvent<XMLHttpRequestEventTarget> ;
17683+ "error": ProgressEvent<XMLHttpRequestEventTarget> ;
17684+ "load": ProgressEvent<XMLHttpRequestEventTarget> ;
17685+ "loadend": ProgressEvent<XMLHttpRequestEventTarget> ;
17686+ "loadstart": ProgressEvent<XMLHttpRequestEventTarget> ;
17687+ "progress": ProgressEvent<XMLHttpRequestEventTarget> ;
17688+ "timeout": ProgressEvent<XMLHttpRequestEventTarget> ;
1768917689}
1769017690
1769117691interface XMLHttpRequestEventTarget extends EventTarget {
@@ -18323,7 +18323,7 @@ declare var onmspointerover: ((this: Window, ev: Event) => any) | null;
1832318323declare var onmspointerup: ((this: Window, ev: Event) => any) | null;
1832418324/** @deprecated */
1832518325declare var onorientationchange: ((this: Window, ev: Event) => any) | null;
18326- declare var onreadystatechange: ((this: Window, ev: ProgressEvent) => any) | null;
18326+ declare var onreadystatechange: ((this: Window, ev: ProgressEvent<Window> ) => any) | null;
1832718327declare var onvrdisplayactivate: ((this: Window, ev: Event) => any) | null;
1832818328declare var onvrdisplayblur: ((this: Window, ev: Event) => any) | null;
1832918329declare var onvrdisplayconnect: ((this: Window, ev: Event) => any) | null;
0 commit comments