@types/web 0.0.54 → 0.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.55 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.55.
|
package/index.d.ts
CHANGED
|
@@ -4261,6 +4261,7 @@ declare var DeviceOrientationEvent: {
|
|
|
4261
4261
|
};
|
|
4262
4262
|
|
|
4263
4263
|
interface DocumentEventMap extends DocumentAndElementEventHandlersEventMap, GlobalEventHandlersEventMap {
|
|
4264
|
+
"DOMContentLoaded": Event;
|
|
4264
4265
|
"fullscreenchange": Event;
|
|
4265
4266
|
"fullscreenerror": Event;
|
|
4266
4267
|
"pointerlockchange": Event;
|
|
@@ -4478,6 +4479,8 @@ interface Document extends Node, DocumentAndElementEventHandlers, DocumentOrShad
|
|
|
4478
4479
|
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
|
|
4479
4480
|
createEvent(eventInterface: "DragEvent"): DragEvent;
|
|
4480
4481
|
createEvent(eventInterface: "ErrorEvent"): ErrorEvent;
|
|
4482
|
+
createEvent(eventInterface: "Event"): Event;
|
|
4483
|
+
createEvent(eventInterface: "Events"): Event;
|
|
4481
4484
|
createEvent(eventInterface: "FocusEvent"): FocusEvent;
|
|
4482
4485
|
createEvent(eventInterface: "FontFaceSetLoadEvent"): FontFaceSetLoadEvent;
|
|
4483
4486
|
createEvent(eventInterface: "FormDataEvent"): FormDataEvent;
|
|
@@ -16445,6 +16448,7 @@ declare var WheelEvent: {
|
|
|
16445
16448
|
};
|
|
16446
16449
|
|
|
16447
16450
|
interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandlersEventMap {
|
|
16451
|
+
"DOMContentLoaded": Event;
|
|
16448
16452
|
"devicemotion": DeviceMotionEvent;
|
|
16449
16453
|
"deviceorientation": DeviceOrientationEvent;
|
|
16450
16454
|
"gamepadconnected": GamepadEvent;
|