@types/serviceworker 0.0.81 → 0.0.83

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 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.81 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.81.
31
+ You can read what changed in version 0.0.83 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.83.
package/index.d.ts CHANGED
@@ -819,6 +819,8 @@ declare var AbortSignal: {
819
819
  new(): AbortSignal;
820
820
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
821
821
  // abort(reason?: any): AbortSignal; - To be re-added in the future
822
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
823
+ any(signals: AbortSignal[]): AbortSignal;
822
824
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
823
825
  timeout(milliseconds: number): AbortSignal;
824
826
  };
@@ -5556,7 +5558,6 @@ declare var WebGL2RenderingContext: {
5556
5558
  readonly STENCIL: 0x1802;
5557
5559
  readonly RED: 0x1903;
5558
5560
  readonly RGB8: 0x8051;
5559
- readonly RGBA8: 0x8058;
5560
5561
  readonly RGB10_A2: 0x8059;
5561
5562
  readonly TEXTURE_BINDING_3D: 0x806A;
5562
5563
  readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6067,6 +6068,7 @@ declare var WebGL2RenderingContext: {
6067
6068
  readonly RENDERBUFFER: 0x8D41;
6068
6069
  readonly RGBA4: 0x8056;
6069
6070
  readonly RGB5_A1: 0x8057;
6071
+ readonly RGBA8: 0x8058;
6070
6072
  readonly RGB565: 0x8D62;
6071
6073
  readonly DEPTH_COMPONENT16: 0x81A5;
6072
6074
  readonly STENCIL_INDEX8: 0x8D48;
@@ -6301,7 +6303,6 @@ interface WebGL2RenderingContextBase {
6301
6303
  readonly STENCIL: 0x1802;
6302
6304
  readonly RED: 0x1903;
6303
6305
  readonly RGB8: 0x8051;
6304
- readonly RGBA8: 0x8058;
6305
6306
  readonly RGB10_A2: 0x8059;
6306
6307
  readonly TEXTURE_BINDING_3D: 0x806A;
6307
6308
  readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6974,6 +6975,7 @@ declare var WebGLRenderingContext: {
6974
6975
  readonly RENDERBUFFER: 0x8D41;
6975
6976
  readonly RGBA4: 0x8056;
6976
6977
  readonly RGB5_A1: 0x8057;
6978
+ readonly RGBA8: 0x8058;
6977
6979
  readonly RGB565: 0x8D62;
6978
6980
  readonly DEPTH_COMPONENT16: 0x81A5;
6979
6981
  readonly STENCIL_INDEX8: 0x8D48;
@@ -7547,6 +7549,7 @@ interface WebGLRenderingContextBase {
7547
7549
  readonly RENDERBUFFER: 0x8D41;
7548
7550
  readonly RGBA4: 0x8056;
7549
7551
  readonly RGB5_A1: 0x8057;
7552
+ readonly RGBA8: 0x8058;
7550
7553
  readonly RGB565: 0x8D62;
7551
7554
  readonly DEPTH_COMPONENT16: 0x81A5;
7552
7555
  readonly STENCIL_INDEX8: 0x8D48;
package/iterable.d.ts CHANGED
@@ -2,6 +2,11 @@
2
2
  /// ServiceWorker Iterable APIs
3
3
  /////////////////////////////
4
4
 
5
+ interface AbortSignal {
6
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
7
+ any(signals: Iterable<AbortSignal>): AbortSignal;
8
+ }
9
+
5
10
  interface CSSNumericArray {
6
11
  [Symbol.iterator](): IterableIterator<CSSNumericValue>;
7
12
  entries(): IterableIterator<[number, CSSNumericValue]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.81",
3
+ "version": "0.0.83",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],