@@ -6098,10 +6098,10 @@ interface GlobalEventHandlers {
6098
6098
*/
6099
6099
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
6100
6100
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
6101
- ontouchcancel: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6102
- ontouchend: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6103
- ontouchmove: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6104
- ontouchstart: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6101
+ ontouchcancel? : ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6102
+ ontouchend? : ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6103
+ ontouchmove? : ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6104
+ ontouchstart? : ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
6105
6105
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
6106
6106
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
6107
6107
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
@@ -19888,10 +19888,10 @@ declare var onsuspend: ((this: Window, ev: Event) => any) | null;
19888
19888
*/
19889
19889
declare var ontimeupdate: ((this: Window, ev: Event) => any) | null;
19890
19890
declare var ontoggle: ((this: Window, ev: Event) => any) | null;
19891
- declare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null;
19892
- declare var ontouchend: ((this: Window, ev: TouchEvent) => any) | null;
19893
- declare var ontouchmove: ((this: Window, ev: TouchEvent) => any) | null;
19894
- declare var ontouchstart: ((this: Window, ev: TouchEvent) => any) | null;
19891
+ declare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19892
+ declare var ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19893
+ declare var ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19894
+ declare var ontouchstart: ((this: Window, ev: TouchEvent) => any) | null | undefined ;
19895
19895
declare var ontransitioncancel: ((this: Window, ev: TransitionEvent) => any) | null;
19896
19896
declare var ontransitionend: ((this: Window, ev: TransitionEvent) => any) | null;
19897
19897
declare var ontransitionrun: ((this: Window, ev: TransitionEvent) => any) | null;
0 commit comments