@@ -5381,11 +5381,11 @@ interface GlobalEventHandlersEventMap {
5381
5381
"ratechange": Event;
5382
5382
"reset": Event;
5383
5383
"resize": UIEvent;
5384
- "scroll": UIEvent ;
5384
+ "scroll": Event ;
5385
5385
"securitypolicyviolation": SecurityPolicyViolationEvent;
5386
5386
"seeked": Event;
5387
5387
"seeking": Event;
5388
- "select": UIEvent ;
5388
+ "select": Event ;
5389
5389
"stalled": Event;
5390
5390
"submit": Event;
5391
5391
"suspend": Event;
@@ -5616,7 +5616,7 @@ interface GlobalEventHandlers {
5616
5616
* Fires when the user repositions the scroll box in the scroll bar on the object.
5617
5617
* @param ev The event.
5618
5618
*/
5619
- onscroll: ((this: GlobalEventHandlers, ev: UIEvent ) => any) | null;
5619
+ onscroll: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5620
5620
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
5621
5621
/**
5622
5622
* Occurs when the seek operation ends.
@@ -5632,7 +5632,7 @@ interface GlobalEventHandlers {
5632
5632
* Fires when the current selection changes.
5633
5633
* @param ev The event.
5634
5634
*/
5635
- onselect: ((this: GlobalEventHandlers, ev: UIEvent ) => any) | null;
5635
+ onselect: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5636
5636
/**
5637
5637
* Occurs when the download has stopped.
5638
5638
* @param ev The event.
@@ -16832,10 +16832,10 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
16832
16832
"readystatechange": ProgressEvent;
16833
16833
"reset": Event;
16834
16834
"resize": UIEvent;
16835
- "scroll": UIEvent ;
16835
+ "scroll": Event ;
16836
16836
"seeked": Event;
16837
16837
"seeking": Event;
16838
- "select": UIEvent ;
16838
+ "select": Event ;
16839
16839
"stalled": Event;
16840
16840
"storage": StorageEvent;
16841
16841
"submit": Event;
@@ -18077,7 +18077,7 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
18077
18077
* Fires when the user repositions the scroll box in the scroll bar on the object.
18078
18078
* @param ev The event.
18079
18079
*/
18080
- declare var onscroll: ((this: Window, ev: UIEvent ) => any) | null;
18080
+ declare var onscroll: ((this: Window, ev: Event ) => any) | null;
18081
18081
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
18082
18082
/**
18083
18083
* Occurs when the seek operation ends.
@@ -18093,7 +18093,7 @@ declare var onseeking: ((this: Window, ev: Event) => any) | null;
18093
18093
* Fires when the current selection changes.
18094
18094
* @param ev The event.
18095
18095
*/
18096
- declare var onselect: ((this: Window, ev: UIEvent ) => any) | null;
18096
+ declare var onselect: ((this: Window, ev: Event ) => any) | null;
18097
18097
/**
18098
18098
* Occurs when the download has stopped.
18099
18099
* @param ev The event.
0 commit comments