@@ -6098,10 +6098,10 @@ interface GlobalEventHandlers {
60986098 */
60996099 ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
61006100 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;
61056105 ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
61066106 ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
61076107 ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
@@ -19888,10 +19888,10 @@ declare var onsuspend: ((this: Window, ev: Event) => any) | null;
1988819888 */
1988919889declare var ontimeupdate: ((this: Window, ev: Event) => any) | null;
1989019890declare 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 ;
1989519895declare var ontransitioncancel: ((this: Window, ev: TransitionEvent) => any) | null;
1989619896declare var ontransitionend: ((this: Window, ev: TransitionEvent) => any) | null;
1989719897declare var ontransitionrun: ((this: Window, ev: TransitionEvent) => any) | null;
0 commit comments