@types/web 0.0.88 → 0.0.89
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 +10 -10
- 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.89 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.89.
|
package/index.d.ts
CHANGED
|
@@ -5749,9 +5749,9 @@ interface GlobalEventHandlersEventMap {
|
|
|
5749
5749
|
"compositionstart": CompositionEvent;
|
|
5750
5750
|
"compositionupdate": CompositionEvent;
|
|
5751
5751
|
"contextmenu": MouseEvent;
|
|
5752
|
-
"copy":
|
|
5752
|
+
"copy": ClipboardEvent;
|
|
5753
5753
|
"cuechange": Event;
|
|
5754
|
-
"cut":
|
|
5754
|
+
"cut": ClipboardEvent;
|
|
5755
5755
|
"dblclick": MouseEvent;
|
|
5756
5756
|
"drag": DragEvent;
|
|
5757
5757
|
"dragend": DragEvent;
|
|
@@ -5786,7 +5786,7 @@ interface GlobalEventHandlersEventMap {
|
|
|
5786
5786
|
"mouseout": MouseEvent;
|
|
5787
5787
|
"mouseover": MouseEvent;
|
|
5788
5788
|
"mouseup": MouseEvent;
|
|
5789
|
-
"paste":
|
|
5789
|
+
"paste": ClipboardEvent;
|
|
5790
5790
|
"pause": Event;
|
|
5791
5791
|
"play": Event;
|
|
5792
5792
|
"playing": Event;
|
|
@@ -5872,9 +5872,9 @@ interface GlobalEventHandlers {
|
|
|
5872
5872
|
* @param ev The mouse event.
|
|
5873
5873
|
*/
|
|
5874
5874
|
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
5875
|
-
oncopy: ((this: GlobalEventHandlers, ev:
|
|
5875
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
5876
5876
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
5877
|
-
oncut: ((this: GlobalEventHandlers, ev:
|
|
5877
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
5878
5878
|
/**
|
|
5879
5879
|
* Fires when the user double-clicks the object.
|
|
5880
5880
|
* @param ev The mouse event.
|
|
@@ -6004,7 +6004,7 @@ interface GlobalEventHandlers {
|
|
|
6004
6004
|
* @param ev The mouse event.
|
|
6005
6005
|
*/
|
|
6006
6006
|
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
6007
|
-
onpaste: ((this: GlobalEventHandlers, ev:
|
|
6007
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
6008
6008
|
/**
|
|
6009
6009
|
* Occurs when playback is paused.
|
|
6010
6010
|
* @param ev The event.
|
|
@@ -18206,9 +18206,9 @@ declare var onclose: ((this: Window, ev: Event) => any) | null;
|
|
|
18206
18206
|
* @param ev The mouse event.
|
|
18207
18207
|
*/
|
|
18208
18208
|
declare var oncontextmenu: ((this: Window, ev: MouseEvent) => any) | null;
|
|
18209
|
-
declare var oncopy: ((this: Window, ev:
|
|
18209
|
+
declare var oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
18210
18210
|
declare var oncuechange: ((this: Window, ev: Event) => any) | null;
|
|
18211
|
-
declare var oncut: ((this: Window, ev:
|
|
18211
|
+
declare var oncut: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
18212
18212
|
/**
|
|
18213
18213
|
* Fires when the user double-clicks the object.
|
|
18214
18214
|
* @param ev The mouse event.
|
|
@@ -18338,7 +18338,7 @@ declare var onmouseover: ((this: Window, ev: MouseEvent) => any) | null;
|
|
|
18338
18338
|
* @param ev The mouse event.
|
|
18339
18339
|
*/
|
|
18340
18340
|
declare var onmouseup: ((this: Window, ev: MouseEvent) => any) | null;
|
|
18341
|
-
declare var onpaste: ((this: Window, ev:
|
|
18341
|
+
declare var onpaste: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
18342
18342
|
/**
|
|
18343
18343
|
* Occurs when playback is paused.
|
|
18344
18344
|
* @param ev The event.
|
|
@@ -18604,7 +18604,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
|
|
18604
18604
|
type IDBRequestReadyState = "done" | "pending";
|
|
18605
18605
|
type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
18606
18606
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
|
18607
|
-
type ImageOrientation = "flipY" | "
|
|
18607
|
+
type ImageOrientation = "flipY" | "from-image";
|
|
18608
18608
|
type ImageSmoothingQuality = "high" | "low" | "medium";
|
|
18609
18609
|
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
|
|
18610
18610
|
type IterationCompositeOperation = "accumulate" | "replace";
|