@types/web 0.0.351 → 0.0.352

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
@@ -49,4 +49,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
49
49
 
50
50
  ## Deploy Metadata
51
51
 
52
- You can read what changed in version 0.0.351 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.351.
52
+ You can read what changed in version 0.0.352 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.352.
package/index.d.ts CHANGED
@@ -43060,6 +43060,47 @@ declare namespace CSS {
43060
43060
  function vw(value: number): CSSUnitValue;
43061
43061
  }
43062
43062
 
43063
+ declare namespace GPUBufferUsage {
43064
+ const MAP_READ: 0x0001;
43065
+ const MAP_WRITE: 0x0002;
43066
+ const COPY_SRC: 0x0004;
43067
+ const COPY_DST: 0x0008;
43068
+ const INDEX: 0x0010;
43069
+ const VERTEX: 0x0020;
43070
+ const UNIFORM: 0x0040;
43071
+ const STORAGE: 0x0080;
43072
+ const INDIRECT: 0x0100;
43073
+ const QUERY_RESOLVE: 0x0200;
43074
+ }
43075
+
43076
+ declare namespace GPUColorWrite {
43077
+ const RED: 0x1;
43078
+ const GREEN: 0x2;
43079
+ const BLUE: 0x4;
43080
+ const ALPHA: 0x8;
43081
+ const ALL: 0xF;
43082
+ }
43083
+
43084
+ declare namespace GPUMapMode {
43085
+ const READ: 0x0001;
43086
+ const WRITE: 0x0002;
43087
+ }
43088
+
43089
+ declare namespace GPUShaderStage {
43090
+ const VERTEX: 0x1;
43091
+ const FRAGMENT: 0x2;
43092
+ const COMPUTE: 0x4;
43093
+ }
43094
+
43095
+ declare namespace GPUTextureUsage {
43096
+ const COPY_SRC: 0x01;
43097
+ const COPY_DST: 0x02;
43098
+ const TEXTURE_BINDING: 0x04;
43099
+ const STORAGE_BINDING: 0x08;
43100
+ const RENDER_ATTACHMENT: 0x10;
43101
+ const TRANSIENT_ATTACHMENT: 0x20;
43102
+ }
43103
+
43063
43104
  declare namespace WebAssembly {
43064
43105
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
43065
43106
  interface CompileError extends Error {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.351",
3
+ "version": "0.0.352",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -43034,6 +43034,47 @@ declare namespace CSS {
43034
43034
  function vw(value: number): CSSUnitValue;
43035
43035
  }
43036
43036
 
43037
+ declare namespace GPUBufferUsage {
43038
+ const MAP_READ: 0x0001;
43039
+ const MAP_WRITE: 0x0002;
43040
+ const COPY_SRC: 0x0004;
43041
+ const COPY_DST: 0x0008;
43042
+ const INDEX: 0x0010;
43043
+ const VERTEX: 0x0020;
43044
+ const UNIFORM: 0x0040;
43045
+ const STORAGE: 0x0080;
43046
+ const INDIRECT: 0x0100;
43047
+ const QUERY_RESOLVE: 0x0200;
43048
+ }
43049
+
43050
+ declare namespace GPUColorWrite {
43051
+ const RED: 0x1;
43052
+ const GREEN: 0x2;
43053
+ const BLUE: 0x4;
43054
+ const ALPHA: 0x8;
43055
+ const ALL: 0xF;
43056
+ }
43057
+
43058
+ declare namespace GPUMapMode {
43059
+ const READ: 0x0001;
43060
+ const WRITE: 0x0002;
43061
+ }
43062
+
43063
+ declare namespace GPUShaderStage {
43064
+ const VERTEX: 0x1;
43065
+ const FRAGMENT: 0x2;
43066
+ const COMPUTE: 0x4;
43067
+ }
43068
+
43069
+ declare namespace GPUTextureUsage {
43070
+ const COPY_SRC: 0x01;
43071
+ const COPY_DST: 0x02;
43072
+ const TEXTURE_BINDING: 0x04;
43073
+ const STORAGE_BINDING: 0x08;
43074
+ const RENDER_ATTACHMENT: 0x10;
43075
+ const TRANSIENT_ATTACHMENT: 0x20;
43076
+ }
43077
+
43037
43078
  declare namespace WebAssembly {
43038
43079
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
43039
43080
  interface CompileError extends Error {
package/ts5.6/index.d.ts CHANGED
@@ -43057,6 +43057,47 @@ declare namespace CSS {
43057
43057
  function vw(value: number): CSSUnitValue;
43058
43058
  }
43059
43059
 
43060
+ declare namespace GPUBufferUsage {
43061
+ const MAP_READ: 0x0001;
43062
+ const MAP_WRITE: 0x0002;
43063
+ const COPY_SRC: 0x0004;
43064
+ const COPY_DST: 0x0008;
43065
+ const INDEX: 0x0010;
43066
+ const VERTEX: 0x0020;
43067
+ const UNIFORM: 0x0040;
43068
+ const STORAGE: 0x0080;
43069
+ const INDIRECT: 0x0100;
43070
+ const QUERY_RESOLVE: 0x0200;
43071
+ }
43072
+
43073
+ declare namespace GPUColorWrite {
43074
+ const RED: 0x1;
43075
+ const GREEN: 0x2;
43076
+ const BLUE: 0x4;
43077
+ const ALPHA: 0x8;
43078
+ const ALL: 0xF;
43079
+ }
43080
+
43081
+ declare namespace GPUMapMode {
43082
+ const READ: 0x0001;
43083
+ const WRITE: 0x0002;
43084
+ }
43085
+
43086
+ declare namespace GPUShaderStage {
43087
+ const VERTEX: 0x1;
43088
+ const FRAGMENT: 0x2;
43089
+ const COMPUTE: 0x4;
43090
+ }
43091
+
43092
+ declare namespace GPUTextureUsage {
43093
+ const COPY_SRC: 0x01;
43094
+ const COPY_DST: 0x02;
43095
+ const TEXTURE_BINDING: 0x04;
43096
+ const STORAGE_BINDING: 0x08;
43097
+ const RENDER_ATTACHMENT: 0x10;
43098
+ const TRANSIENT_ATTACHMENT: 0x20;
43099
+ }
43100
+
43060
43101
  declare namespace WebAssembly {
43061
43102
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
43062
43103
  interface CompileError extends Error {
package/ts5.9/index.d.ts CHANGED
@@ -43057,6 +43057,47 @@ declare namespace CSS {
43057
43057
  function vw(value: number): CSSUnitValue;
43058
43058
  }
43059
43059
 
43060
+ declare namespace GPUBufferUsage {
43061
+ const MAP_READ: 0x0001;
43062
+ const MAP_WRITE: 0x0002;
43063
+ const COPY_SRC: 0x0004;
43064
+ const COPY_DST: 0x0008;
43065
+ const INDEX: 0x0010;
43066
+ const VERTEX: 0x0020;
43067
+ const UNIFORM: 0x0040;
43068
+ const STORAGE: 0x0080;
43069
+ const INDIRECT: 0x0100;
43070
+ const QUERY_RESOLVE: 0x0200;
43071
+ }
43072
+
43073
+ declare namespace GPUColorWrite {
43074
+ const RED: 0x1;
43075
+ const GREEN: 0x2;
43076
+ const BLUE: 0x4;
43077
+ const ALPHA: 0x8;
43078
+ const ALL: 0xF;
43079
+ }
43080
+
43081
+ declare namespace GPUMapMode {
43082
+ const READ: 0x0001;
43083
+ const WRITE: 0x0002;
43084
+ }
43085
+
43086
+ declare namespace GPUShaderStage {
43087
+ const VERTEX: 0x1;
43088
+ const FRAGMENT: 0x2;
43089
+ const COMPUTE: 0x4;
43090
+ }
43091
+
43092
+ declare namespace GPUTextureUsage {
43093
+ const COPY_SRC: 0x01;
43094
+ const COPY_DST: 0x02;
43095
+ const TEXTURE_BINDING: 0x04;
43096
+ const STORAGE_BINDING: 0x08;
43097
+ const RENDER_ATTACHMENT: 0x10;
43098
+ const TRANSIENT_ATTACHMENT: 0x20;
43099
+ }
43100
+
43060
43101
  declare namespace WebAssembly {
43061
43102
  /** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
43062
43103
  interface CompileError extends Error {