@types/serviceworker 0.0.60 → 0.0.62
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.62 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.62.
|
package/index.d.ts
CHANGED
|
@@ -3345,6 +3345,13 @@ interface WEBGL_compressed_texture_etc1 {
|
|
|
3345
3345
|
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
|
|
3346
3346
|
}
|
|
3347
3347
|
|
|
3348
|
+
interface WEBGL_compressed_texture_pvrtc {
|
|
3349
|
+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
|
|
3350
|
+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
|
|
3351
|
+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
|
|
3352
|
+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3348
3355
|
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
|
|
3349
3356
|
interface WEBGL_compressed_texture_s3tc {
|
|
3350
3357
|
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
|
|
@@ -4845,6 +4852,7 @@ interface WebGLRenderingContextBase {
|
|
|
4845
4852
|
getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
|
|
4846
4853
|
getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
|
|
4847
4854
|
getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
|
|
4855
|
+
getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
|
|
4848
4856
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
|
|
4849
4857
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
|
|
4850
4858
|
getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
|
|
@@ -5849,7 +5857,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
|
|
5849
5857
|
type IDBRequestReadyState = "done" | "pending";
|
|
5850
5858
|
type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
5851
5859
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
|
5852
|
-
type ImageOrientation = "flipY" | "
|
|
5860
|
+
type ImageOrientation = "flipY" | "from-image";
|
|
5853
5861
|
type ImageSmoothingQuality = "high" | "low" | "medium";
|
|
5854
5862
|
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
|
|
5855
5863
|
type KeyType = "private" | "public" | "secret";
|