@types/serviceworker 0.0.61 → 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +8 -0
  3. 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.61 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.61.
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.61",
3
+ "version": "0.0.62",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],