@types/serviceworker 0.0.198 → 0.0.199

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
@@ -30,4 +30,4 @@ This project does not respect semantic versioning as almost every change could p
30
30
 
31
31
  ## Deploy Metadata
32
32
 
33
- You can read what changed in version 0.0.198 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.198.
33
+ You can read what changed in version 0.0.199 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.199.
package/index.d.ts CHANGED
@@ -12838,6 +12838,47 @@ declare var WritableStreamDefaultWriter: {
12838
12838
  new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;
12839
12839
  };
12840
12840
 
12841
+ declare namespace GPUBufferUsage {
12842
+ const MAP_READ: 0x0001;
12843
+ const MAP_WRITE: 0x0002;
12844
+ const COPY_SRC: 0x0004;
12845
+ const COPY_DST: 0x0008;
12846
+ const INDEX: 0x0010;
12847
+ const VERTEX: 0x0020;
12848
+ const UNIFORM: 0x0040;
12849
+ const STORAGE: 0x0080;
12850
+ const INDIRECT: 0x0100;
12851
+ const QUERY_RESOLVE: 0x0200;
12852
+ }
12853
+
12854
+ declare namespace GPUColorWrite {
12855
+ const RED: 0x1;
12856
+ const GREEN: 0x2;
12857
+ const BLUE: 0x4;
12858
+ const ALPHA: 0x8;
12859
+ const ALL: 0xF;
12860
+ }
12861
+
12862
+ declare namespace GPUMapMode {
12863
+ const READ: 0x0001;
12864
+ const WRITE: 0x0002;
12865
+ }
12866
+
12867
+ declare namespace GPUShaderStage {
12868
+ const VERTEX: 0x1;
12869
+ const FRAGMENT: 0x2;
12870
+ const COMPUTE: 0x4;
12871
+ }
12872
+
12873
+ declare namespace GPUTextureUsage {
12874
+ const COPY_SRC: 0x01;
12875
+ const COPY_DST: 0x02;
12876
+ const TEXTURE_BINDING: 0x04;
12877
+ const STORAGE_BINDING: 0x08;
12878
+ const RENDER_ATTACHMENT: 0x10;
12879
+ const TRANSIENT_ATTACHMENT: 0x20;
12880
+ }
12881
+
12841
12882
  declare namespace WebAssembly {
12842
12883
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
12843
12884
  interface CompileError extends Error {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.198",
3
+ "version": "0.0.199",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -12835,6 +12835,47 @@ declare var WritableStreamDefaultWriter: {
12835
12835
  new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;
12836
12836
  };
12837
12837
 
12838
+ declare namespace GPUBufferUsage {
12839
+ const MAP_READ: 0x0001;
12840
+ const MAP_WRITE: 0x0002;
12841
+ const COPY_SRC: 0x0004;
12842
+ const COPY_DST: 0x0008;
12843
+ const INDEX: 0x0010;
12844
+ const VERTEX: 0x0020;
12845
+ const UNIFORM: 0x0040;
12846
+ const STORAGE: 0x0080;
12847
+ const INDIRECT: 0x0100;
12848
+ const QUERY_RESOLVE: 0x0200;
12849
+ }
12850
+
12851
+ declare namespace GPUColorWrite {
12852
+ const RED: 0x1;
12853
+ const GREEN: 0x2;
12854
+ const BLUE: 0x4;
12855
+ const ALPHA: 0x8;
12856
+ const ALL: 0xF;
12857
+ }
12858
+
12859
+ declare namespace GPUMapMode {
12860
+ const READ: 0x0001;
12861
+ const WRITE: 0x0002;
12862
+ }
12863
+
12864
+ declare namespace GPUShaderStage {
12865
+ const VERTEX: 0x1;
12866
+ const FRAGMENT: 0x2;
12867
+ const COMPUTE: 0x4;
12868
+ }
12869
+
12870
+ declare namespace GPUTextureUsage {
12871
+ const COPY_SRC: 0x01;
12872
+ const COPY_DST: 0x02;
12873
+ const TEXTURE_BINDING: 0x04;
12874
+ const STORAGE_BINDING: 0x08;
12875
+ const RENDER_ATTACHMENT: 0x10;
12876
+ const TRANSIENT_ATTACHMENT: 0x20;
12877
+ }
12878
+
12838
12879
  declare namespace WebAssembly {
12839
12880
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
12840
12881
  interface CompileError extends Error {
package/ts5.6/index.d.ts CHANGED
@@ -12835,6 +12835,47 @@ declare var WritableStreamDefaultWriter: {
12835
12835
  new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;
12836
12836
  };
12837
12837
 
12838
+ declare namespace GPUBufferUsage {
12839
+ const MAP_READ: 0x0001;
12840
+ const MAP_WRITE: 0x0002;
12841
+ const COPY_SRC: 0x0004;
12842
+ const COPY_DST: 0x0008;
12843
+ const INDEX: 0x0010;
12844
+ const VERTEX: 0x0020;
12845
+ const UNIFORM: 0x0040;
12846
+ const STORAGE: 0x0080;
12847
+ const INDIRECT: 0x0100;
12848
+ const QUERY_RESOLVE: 0x0200;
12849
+ }
12850
+
12851
+ declare namespace GPUColorWrite {
12852
+ const RED: 0x1;
12853
+ const GREEN: 0x2;
12854
+ const BLUE: 0x4;
12855
+ const ALPHA: 0x8;
12856
+ const ALL: 0xF;
12857
+ }
12858
+
12859
+ declare namespace GPUMapMode {
12860
+ const READ: 0x0001;
12861
+ const WRITE: 0x0002;
12862
+ }
12863
+
12864
+ declare namespace GPUShaderStage {
12865
+ const VERTEX: 0x1;
12866
+ const FRAGMENT: 0x2;
12867
+ const COMPUTE: 0x4;
12868
+ }
12869
+
12870
+ declare namespace GPUTextureUsage {
12871
+ const COPY_SRC: 0x01;
12872
+ const COPY_DST: 0x02;
12873
+ const TEXTURE_BINDING: 0x04;
12874
+ const STORAGE_BINDING: 0x08;
12875
+ const RENDER_ATTACHMENT: 0x10;
12876
+ const TRANSIENT_ATTACHMENT: 0x20;
12877
+ }
12878
+
12838
12879
  declare namespace WebAssembly {
12839
12880
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
12840
12881
  interface CompileError extends Error {
package/ts5.9/index.d.ts CHANGED
@@ -12835,6 +12835,47 @@ declare var WritableStreamDefaultWriter: {
12835
12835
  new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;
12836
12836
  };
12837
12837
 
12838
+ declare namespace GPUBufferUsage {
12839
+ const MAP_READ: 0x0001;
12840
+ const MAP_WRITE: 0x0002;
12841
+ const COPY_SRC: 0x0004;
12842
+ const COPY_DST: 0x0008;
12843
+ const INDEX: 0x0010;
12844
+ const VERTEX: 0x0020;
12845
+ const UNIFORM: 0x0040;
12846
+ const STORAGE: 0x0080;
12847
+ const INDIRECT: 0x0100;
12848
+ const QUERY_RESOLVE: 0x0200;
12849
+ }
12850
+
12851
+ declare namespace GPUColorWrite {
12852
+ const RED: 0x1;
12853
+ const GREEN: 0x2;
12854
+ const BLUE: 0x4;
12855
+ const ALPHA: 0x8;
12856
+ const ALL: 0xF;
12857
+ }
12858
+
12859
+ declare namespace GPUMapMode {
12860
+ const READ: 0x0001;
12861
+ const WRITE: 0x0002;
12862
+ }
12863
+
12864
+ declare namespace GPUShaderStage {
12865
+ const VERTEX: 0x1;
12866
+ const FRAGMENT: 0x2;
12867
+ const COMPUTE: 0x4;
12868
+ }
12869
+
12870
+ declare namespace GPUTextureUsage {
12871
+ const COPY_SRC: 0x01;
12872
+ const COPY_DST: 0x02;
12873
+ const TEXTURE_BINDING: 0x04;
12874
+ const STORAGE_BINDING: 0x08;
12875
+ const RENDER_ATTACHMENT: 0x10;
12876
+ const TRANSIENT_ATTACHMENT: 0x20;
12877
+ }
12878
+
12838
12879
  declare namespace WebAssembly {
12839
12880
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
12840
12881
  interface CompileError extends Error {