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