@types/sharedworker 0.0.89 → 0.0.91
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.91 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.91.
|
package/index.d.ts
CHANGED
|
@@ -3209,6 +3209,13 @@ interface WEBGL_compressed_texture_etc1 {
|
|
|
3209
3209
|
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
|
|
3210
3210
|
}
|
|
3211
3211
|
|
|
3212
|
+
interface WEBGL_compressed_texture_pvrtc {
|
|
3213
|
+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
|
|
3214
|
+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
|
|
3215
|
+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
|
|
3216
|
+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3212
3219
|
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
|
|
3213
3220
|
interface WEBGL_compressed_texture_s3tc {
|
|
3214
3221
|
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
|
|
@@ -4709,6 +4716,7 @@ interface WebGLRenderingContextBase {
|
|
|
4709
4716
|
getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
|
|
4710
4717
|
getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
|
|
4711
4718
|
getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
|
|
4719
|
+
getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
|
|
4712
4720
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
|
|
4713
4721
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
|
|
4714
4722
|
getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
|
|
@@ -5857,7 +5865,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
|
|
5857
5865
|
type IDBRequestReadyState = "done" | "pending";
|
|
5858
5866
|
type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
5859
5867
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
|
5860
|
-
type ImageOrientation = "flipY" | "
|
|
5868
|
+
type ImageOrientation = "flipY" | "from-image";
|
|
5861
5869
|
type ImageSmoothingQuality = "high" | "low" | "medium";
|
|
5862
5870
|
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
|
|
5863
5871
|
type KeyType = "private" | "public" | "secret";
|