@types/web 0.0.76 → 0.0.77
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 +1 -1
- 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.77 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.77.
|
package/index.d.ts
CHANGED
|
@@ -18309,7 +18309,6 @@ type HashAlgorithmIdentifier = AlgorithmIdentifier;
|
|
|
18309
18309
|
type HeadersInit = [string, string][] | Record<string, string> | Headers;
|
|
18310
18310
|
type IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];
|
|
18311
18311
|
type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
|
|
18312
|
-
type InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend";
|
|
18313
18312
|
type Int32List = Int32Array | GLint[];
|
|
18314
18313
|
type LineAndPositionSetting = number | AutoKeyword;
|
|
18315
18314
|
type MediaProvider = MediaStream | MediaSource | Blob;
|
|
@@ -18387,6 +18386,7 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
|
18387
18386
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
|
18388
18387
|
type ImageOrientation = "flipY" | "none";
|
|
18389
18388
|
type ImageSmoothingQuality = "high" | "low" | "medium";
|
|
18389
|
+
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
|
|
18390
18390
|
type IterationCompositeOperation = "accumulate" | "replace";
|
|
18391
18391
|
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
|
|
18392
18392
|
type KeyType = "private" | "public" | "secret";
|