Skip to content

Commit 82ecb2f

Browse files
committed
Updating generated types
1 parent 328e1b0 commit 82ecb2f

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

baselines/dom.generated.d.ts

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3533,10 +3533,10 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap {
35333533
"submit": Event;
35343534
"suspend": Event;
35353535
"timeupdate": Event;
3536-
"touchcancel": Event;
3537-
"touchend": Event;
3538-
"touchmove": Event;
3539-
"touchstart": Event;
3536+
"touchcancel": TouchEvent;
3537+
"touchend": TouchEvent;
3538+
"touchmove": TouchEvent;
3539+
"touchstart": TouchEvent;
35403540
"volumechange": Event;
35413541
"waiting": Event;
35423542
"webkitfullscreenchange": Event;
@@ -3950,10 +3950,10 @@ interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent
39503950
* @param ev The event.
39513951
*/
39523952
ontimeupdate: ((this: Document, ev: Event) => any) | null;
3953-
ontouchcancel: ((this: Document, ev: Event) => any) | null;
3954-
ontouchend: ((this: Document, ev: Event) => any) | null;
3955-
ontouchmove: ((this: Document, ev: Event) => any) | null;
3956-
ontouchstart: ((this: Document, ev: Event) => any) | null;
3953+
ontouchcancel: ((this: Document, ev: TouchEvent) => any) | null;
3954+
ontouchend: ((this: Document, ev: TouchEvent) => any) | null;
3955+
ontouchmove: ((this: Document, ev: TouchEvent) => any) | null;
3956+
ontouchstart: ((this: Document, ev: TouchEvent) => any) | null;
39573957
onvisibilitychange: (this: Document, ev: Event) => any;
39583958
/**
39593959
* Occurs when the volume is changed, or playback is muted or unmuted.
@@ -4313,6 +4313,7 @@ interface DocumentEvent {
43134313
createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent;
43144314
createEvent(eventInterface: "StorageEvent"): StorageEvent;
43154315
createEvent(eventInterface: "TextEvent"): TextEvent;
4316+
createEvent(eventInterface: "TouchEvent"): TouchEvent;
43164317
createEvent(eventInterface: "TrackEvent"): TrackEvent;
43174318
createEvent(eventInterface: "TransitionEvent"): TransitionEvent;
43184319
createEvent(eventInterface: "UIEvent"): UIEvent;
@@ -4432,10 +4433,10 @@ interface ElementEventMap extends GlobalEventHandlersEventMap {
44324433
"MSPointerOut": Event;
44334434
"MSPointerOver": Event;
44344435
"MSPointerUp": Event;
4435-
"touchcancel": Event;
4436-
"touchend": Event;
4437-
"touchmove": Event;
4438-
"touchstart": Event;
4436+
"touchcancel": TouchEvent;
4437+
"touchend": TouchEvent;
4438+
"touchmove": TouchEvent;
4439+
"touchstart": TouchEvent;
44394440
"webkitfullscreenchange": Event;
44404441
"webkitfullscreenerror": Event;
44414442
}
@@ -4474,10 +4475,10 @@ interface Element extends Node, GlobalEventHandlers, ElementTraversal, ParentNod
44744475
onmspointerout: ((this: Element, ev: Event) => any) | null;
44754476
onmspointerover: ((this: Element, ev: Event) => any) | null;
44764477
onmspointerup: ((this: Element, ev: Event) => any) | null;
4477-
ontouchcancel: ((this: Element, ev: Event) => any) | null;
4478-
ontouchend: ((this: Element, ev: Event) => any) | null;
4479-
ontouchmove: ((this: Element, ev: Event) => any) | null;
4480-
ontouchstart: ((this: Element, ev: Event) => any) | null;
4478+
ontouchcancel: ((this: Element, ev: TouchEvent) => any) | null;
4479+
ontouchend: ((this: Element, ev: TouchEvent) => any) | null;
4480+
ontouchmove: ((this: Element, ev: TouchEvent) => any) | null;
4481+
ontouchstart: ((this: Element, ev: TouchEvent) => any) | null;
44814482
onwebkitfullscreenchange: ((this: Element, ev: Event) => any) | null;
44824483
onwebkitfullscreenerror: ((this: Element, ev: Event) => any) | null;
44834484
outerHTML: string;
@@ -14870,10 +14871,10 @@ interface WindowEventMap extends GlobalEventHandlersEventMap {
1487014871
"submit": Event;
1487114872
"suspend": Event;
1487214873
"timeupdate": Event;
14873-
"touchcancel": Event;
14874-
"touchend": Event;
14875-
"touchmove": Event;
14876-
"touchstart": Event;
14874+
"touchcancel": TouchEvent;
14875+
"touchend": TouchEvent;
14876+
"touchmove": TouchEvent;
14877+
"touchstart": TouchEvent;
1487714878
"unload": Event;
1487814879
"volumechange": Event;
1487914880
"vrdisplayactivate": Event;

0 commit comments

Comments
 (0)