@@ -4208,6 +4208,7 @@ interface Document extends Node, NonElementParentNode, DocumentOrShadowRoot, Par
4208
4208
createEvent(eventInterface: "DeviceLightEvent"): DeviceLightEvent;
4209
4209
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
4210
4210
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
4211
+ createEvent(eventInterface: "DragEvent"): DragEvent;
4211
4212
createEvent(eventInterface: "ErrorEvent"): ErrorEvent;
4212
4213
createEvent(eventInterface: "Event"): Event;
4213
4214
createEvent(eventInterface: "Events"): Event;
@@ -4221,6 +4222,7 @@ interface Document extends Node, NonElementParentNode, DocumentOrShadowRoot, Par
4221
4222
createEvent(eventInterface: "MSGestureEvent"): MSGestureEvent;
4222
4223
createEvent(eventInterface: "MSMediaKeyMessageEvent"): MSMediaKeyMessageEvent;
4223
4224
createEvent(eventInterface: "MSMediaKeyNeededEvent"): MSMediaKeyNeededEvent;
4225
+ createEvent(eventInterface: "MSPointerEvent"): MSPointerEvent;
4224
4226
createEvent(eventInterface: "MediaEncryptedEvent"): MediaEncryptedEvent;
4225
4227
createEvent(eventInterface: "MediaKeyMessageEvent"): MediaKeyMessageEvent;
4226
4228
createEvent(eventInterface: "MediaQueryListEvent"): MediaQueryListEvent;
@@ -4268,6 +4270,7 @@ interface Document extends Node, NonElementParentNode, DocumentOrShadowRoot, Par
4268
4270
createEvent(eventInterface: "VRDisplayEvent"): VRDisplayEvent;
4269
4271
createEvent(eventInterface: "VRDisplayEvent "): VRDisplayEvent ;
4270
4272
createEvent(eventInterface: "WebGLContextEvent"): WebGLContextEvent;
4273
+ createEvent(eventInterface: "WheelEvent"): WheelEvent;
4271
4274
createEvent(eventInterface: string): Event;
4272
4275
/**
4273
4276
* Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.
@@ -4456,6 +4459,7 @@ interface DocumentEvent {
4456
4459
createEvent(eventInterface: "DeviceLightEvent"): DeviceLightEvent;
4457
4460
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
4458
4461
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
4462
+ createEvent(eventInterface: "DragEvent"): DragEvent;
4459
4463
createEvent(eventInterface: "ErrorEvent"): ErrorEvent;
4460
4464
createEvent(eventInterface: "Event"): Event;
4461
4465
createEvent(eventInterface: "Events"): Event;
@@ -4469,6 +4473,7 @@ interface DocumentEvent {
4469
4473
createEvent(eventInterface: "MSGestureEvent"): MSGestureEvent;
4470
4474
createEvent(eventInterface: "MSMediaKeyMessageEvent"): MSMediaKeyMessageEvent;
4471
4475
createEvent(eventInterface: "MSMediaKeyNeededEvent"): MSMediaKeyNeededEvent;
4476
+ createEvent(eventInterface: "MSPointerEvent"): MSPointerEvent;
4472
4477
createEvent(eventInterface: "MediaEncryptedEvent"): MediaEncryptedEvent;
4473
4478
createEvent(eventInterface: "MediaKeyMessageEvent"): MediaKeyMessageEvent;
4474
4479
createEvent(eventInterface: "MediaQueryListEvent"): MediaQueryListEvent;
@@ -4516,6 +4521,7 @@ interface DocumentEvent {
4516
4521
createEvent(eventInterface: "VRDisplayEvent"): VRDisplayEvent;
4517
4522
createEvent(eventInterface: "VRDisplayEvent "): VRDisplayEvent ;
4518
4523
createEvent(eventInterface: "WebGLContextEvent"): WebGLContextEvent;
4524
+ createEvent(eventInterface: "WheelEvent"): WheelEvent;
4519
4525
createEvent(eventInterface: string): Event;
4520
4526
}
4521
4527
0 commit comments