@types/serviceworker 0.0.61 → 0.0.63

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 -1
  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.63 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.63.
package/index.d.ts CHANGED
@@ -3287,7 +3287,6 @@ interface URLSearchParams {
3287
3287
  declare var URLSearchParams: {
3288
3288
  prototype: URLSearchParams;
3289
3289
  new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
3290
- toString(): string;
3291
3290
  };
3292
3291
 
3293
3292
  interface WEBGL_color_buffer_float {
@@ -3345,6 +3344,13 @@ interface WEBGL_compressed_texture_etc1 {
3345
3344
  readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
3346
3345
  }
3347
3346
 
3347
+ interface WEBGL_compressed_texture_pvrtc {
3348
+ readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
3349
+ readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
3350
+ readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
3351
+ readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
3352
+ }
3353
+
3348
3354
  /** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
3349
3355
  interface WEBGL_compressed_texture_s3tc {
3350
3356
  readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
@@ -4845,6 +4851,7 @@ interface WebGLRenderingContextBase {
4845
4851
  getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
4846
4852
  getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
4847
4853
  getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
4854
+ getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
4848
4855
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
4849
4856
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
4850
4857
  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.63",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],