@@ -6061,10 +6061,10 @@ interface GlobalEventHandlers {
6061
6061
*/
6062
6062
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
6063
6063
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
6064
- ontouchcancel: ((this: GlobalEventHandlers , ev: TouchEvent) => any) | null;
6065
- ontouchend: ((this: GlobalEventHandlers , ev: TouchEvent) => any) | null;
6066
- ontouchmove: ((this: GlobalEventHandlers , ev: TouchEvent) => any) | null;
6067
- ontouchstart: ((this: GlobalEventHandlers , ev: TouchEvent) => any) | null;
6064
+ ontouchcancel: ((this: Window , ev: TouchEvent) => any) | null | undefined ;
6065
+ ontouchend: ((this: Window , ev: TouchEvent) => any) | null | undefined ;
6066
+ ontouchmove: ((this: Window , ev: TouchEvent) => any) | null | undefined ;
6067
+ ontouchstart: ((this: Window , ev: TouchEvent) => any) | null | undefined ;
6068
6068
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
6069
6069
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
6070
6070
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
@@ -19845,10 +19845,10 @@ declare var onsuspend: ((this: Window, ev: Event) => any) | null;
19845
19845
*/
19846
19846
declare var ontimeupdate: ((this: Window, ev: Event) => any) | null;
19847
19847
declare var ontoggle: ((this: Window, ev: Event) => any) | null;
19848
- declare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null;
19849
- declare var ontouchend: ((this: Window, ev: TouchEvent) => any) | null;
19850
- declare var ontouchmove: ((this: Window, ev: TouchEvent) => any) | null;
19851
- declare var ontouchstart: ((this: Window, ev: TouchEvent) => any) | null;
19848
+ declare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19849
+ declare var ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19850
+ declare var ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19851
+ declare var ontouchstart: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19852
19852
declare var ontransitioncancel: ((this: Window, ev: TransitionEvent) => any) | null;
19853
19853
declare var ontransitionend: ((this: Window, ev: TransitionEvent) => any) | null;
19854
19854
declare var ontransitionrun: ((this: Window, ev: TransitionEvent) => any) | null;
0 commit comments