@@ -5336,11 +5336,11 @@ interface GlobalEventHandlersEventMap {
5336
5336
"ratechange": Event;
5337
5337
"reset": Event;
5338
5338
"resize": UIEvent;
5339
- "scroll": UIEvent ;
5339
+ "scroll": Event ;
5340
5340
"securitypolicyviolation": SecurityPolicyViolationEvent;
5341
5341
"seeked": Event;
5342
5342
"seeking": Event;
5343
- "select": UIEvent ;
5343
+ "select": Event ;
5344
5344
"stalled": Event;
5345
5345
"submit": Event;
5346
5346
"suspend": Event;
@@ -5571,7 +5571,7 @@ interface GlobalEventHandlers {
5571
5571
* Fires when the user repositions the scroll box in the scroll bar on the object.
5572
5572
* @param ev The event.
5573
5573
*/
5574
- onscroll: ((this: GlobalEventHandlers, ev: UIEvent ) => any) | null;
5574
+ onscroll: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5575
5575
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
5576
5576
/**
5577
5577
* Occurs when the seek operation ends.
@@ -5587,7 +5587,7 @@ interface GlobalEventHandlers {
5587
5587
* Fires when the current selection changes.
5588
5588
* @param ev The event.
5589
5589
*/
5590
- onselect: ((this: GlobalEventHandlers, ev: UIEvent ) => any) | null;
5590
+ onselect: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5591
5591
/**
5592
5592
* Occurs when the download has stopped.
5593
5593
* @param ev The event.
@@ -16467,10 +16467,10 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
16467
16467
"readystatechange": ProgressEvent;
16468
16468
"reset": Event;
16469
16469
"resize": UIEvent;
16470
- "scroll": UIEvent ;
16470
+ "scroll": Event ;
16471
16471
"seeked": Event;
16472
16472
"seeking": Event;
16473
- "select": UIEvent ;
16473
+ "select": Event ;
16474
16474
"stalled": Event;
16475
16475
"storage": StorageEvent;
16476
16476
"submit": Event;
@@ -17699,7 +17699,7 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
17699
17699
* Fires when the user repositions the scroll box in the scroll bar on the object.
17700
17700
* @param ev The event.
17701
17701
*/
17702
- declare var onscroll: ((this: Window, ev: UIEvent ) => any) | null;
17702
+ declare var onscroll: ((this: Window, ev: Event ) => any) | null;
17703
17703
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
17704
17704
/**
17705
17705
* Occurs when the seek operation ends.
@@ -17715,7 +17715,7 @@ declare var onseeking: ((this: Window, ev: Event) => any) | null;
17715
17715
* Fires when the current selection changes.
17716
17716
* @param ev The event.
17717
17717
*/
17718
- declare var onselect: ((this: Window, ev: UIEvent ) => any) | null;
17718
+ declare var onselect: ((this: Window, ev: Event ) => any) | null;
17719
17719
/**
17720
17720
* Occurs when the download has stopped.
17721
17721
* @param ev The event.
0 commit comments