@types/sharedworker 0.0.227 → 0.0.228
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 +1 -1
- package/index.d.ts +41 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +41 -0
- package/ts5.6/index.d.ts +41 -0
- package/ts5.9/index.d.ts +41 -0
package/README.md
CHANGED
|
@@ -29,4 +29,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
29
29
|
|
|
30
30
|
## Deploy Metadata
|
|
31
31
|
|
|
32
|
-
You can read what changed in version 0.0.
|
|
32
|
+
You can read what changed in version 0.0.228 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.228.
|
package/index.d.ts
CHANGED
|
@@ -12564,6 +12564,47 @@ declare var XMLHttpRequestUpload: {
|
|
|
12564
12564
|
new(): XMLHttpRequestUpload;
|
|
12565
12565
|
};
|
|
12566
12566
|
|
|
12567
|
+
declare namespace GPUBufferUsage {
|
|
12568
|
+
const MAP_READ: 0x0001;
|
|
12569
|
+
const MAP_WRITE: 0x0002;
|
|
12570
|
+
const COPY_SRC: 0x0004;
|
|
12571
|
+
const COPY_DST: 0x0008;
|
|
12572
|
+
const INDEX: 0x0010;
|
|
12573
|
+
const VERTEX: 0x0020;
|
|
12574
|
+
const UNIFORM: 0x0040;
|
|
12575
|
+
const STORAGE: 0x0080;
|
|
12576
|
+
const INDIRECT: 0x0100;
|
|
12577
|
+
const QUERY_RESOLVE: 0x0200;
|
|
12578
|
+
}
|
|
12579
|
+
|
|
12580
|
+
declare namespace GPUColorWrite {
|
|
12581
|
+
const RED: 0x1;
|
|
12582
|
+
const GREEN: 0x2;
|
|
12583
|
+
const BLUE: 0x4;
|
|
12584
|
+
const ALPHA: 0x8;
|
|
12585
|
+
const ALL: 0xF;
|
|
12586
|
+
}
|
|
12587
|
+
|
|
12588
|
+
declare namespace GPUMapMode {
|
|
12589
|
+
const READ: 0x0001;
|
|
12590
|
+
const WRITE: 0x0002;
|
|
12591
|
+
}
|
|
12592
|
+
|
|
12593
|
+
declare namespace GPUShaderStage {
|
|
12594
|
+
const VERTEX: 0x1;
|
|
12595
|
+
const FRAGMENT: 0x2;
|
|
12596
|
+
const COMPUTE: 0x4;
|
|
12597
|
+
}
|
|
12598
|
+
|
|
12599
|
+
declare namespace GPUTextureUsage {
|
|
12600
|
+
const COPY_SRC: 0x01;
|
|
12601
|
+
const COPY_DST: 0x02;
|
|
12602
|
+
const TEXTURE_BINDING: 0x04;
|
|
12603
|
+
const STORAGE_BINDING: 0x08;
|
|
12604
|
+
const RENDER_ATTACHMENT: 0x10;
|
|
12605
|
+
const TRANSIENT_ATTACHMENT: 0x20;
|
|
12606
|
+
}
|
|
12607
|
+
|
|
12567
12608
|
declare namespace WebAssembly {
|
|
12568
12609
|
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
|
|
12569
12610
|
interface CompileError extends Error {
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -12561,6 +12561,47 @@ declare var XMLHttpRequestUpload: {
|
|
|
12561
12561
|
new(): XMLHttpRequestUpload;
|
|
12562
12562
|
};
|
|
12563
12563
|
|
|
12564
|
+
declare namespace GPUBufferUsage {
|
|
12565
|
+
const MAP_READ: 0x0001;
|
|
12566
|
+
const MAP_WRITE: 0x0002;
|
|
12567
|
+
const COPY_SRC: 0x0004;
|
|
12568
|
+
const COPY_DST: 0x0008;
|
|
12569
|
+
const INDEX: 0x0010;
|
|
12570
|
+
const VERTEX: 0x0020;
|
|
12571
|
+
const UNIFORM: 0x0040;
|
|
12572
|
+
const STORAGE: 0x0080;
|
|
12573
|
+
const INDIRECT: 0x0100;
|
|
12574
|
+
const QUERY_RESOLVE: 0x0200;
|
|
12575
|
+
}
|
|
12576
|
+
|
|
12577
|
+
declare namespace GPUColorWrite {
|
|
12578
|
+
const RED: 0x1;
|
|
12579
|
+
const GREEN: 0x2;
|
|
12580
|
+
const BLUE: 0x4;
|
|
12581
|
+
const ALPHA: 0x8;
|
|
12582
|
+
const ALL: 0xF;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12585
|
+
declare namespace GPUMapMode {
|
|
12586
|
+
const READ: 0x0001;
|
|
12587
|
+
const WRITE: 0x0002;
|
|
12588
|
+
}
|
|
12589
|
+
|
|
12590
|
+
declare namespace GPUShaderStage {
|
|
12591
|
+
const VERTEX: 0x1;
|
|
12592
|
+
const FRAGMENT: 0x2;
|
|
12593
|
+
const COMPUTE: 0x4;
|
|
12594
|
+
}
|
|
12595
|
+
|
|
12596
|
+
declare namespace GPUTextureUsage {
|
|
12597
|
+
const COPY_SRC: 0x01;
|
|
12598
|
+
const COPY_DST: 0x02;
|
|
12599
|
+
const TEXTURE_BINDING: 0x04;
|
|
12600
|
+
const STORAGE_BINDING: 0x08;
|
|
12601
|
+
const RENDER_ATTACHMENT: 0x10;
|
|
12602
|
+
const TRANSIENT_ATTACHMENT: 0x20;
|
|
12603
|
+
}
|
|
12604
|
+
|
|
12564
12605
|
declare namespace WebAssembly {
|
|
12565
12606
|
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
|
|
12566
12607
|
interface CompileError extends Error {
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -12561,6 +12561,47 @@ declare var XMLHttpRequestUpload: {
|
|
|
12561
12561
|
new(): XMLHttpRequestUpload;
|
|
12562
12562
|
};
|
|
12563
12563
|
|
|
12564
|
+
declare namespace GPUBufferUsage {
|
|
12565
|
+
const MAP_READ: 0x0001;
|
|
12566
|
+
const MAP_WRITE: 0x0002;
|
|
12567
|
+
const COPY_SRC: 0x0004;
|
|
12568
|
+
const COPY_DST: 0x0008;
|
|
12569
|
+
const INDEX: 0x0010;
|
|
12570
|
+
const VERTEX: 0x0020;
|
|
12571
|
+
const UNIFORM: 0x0040;
|
|
12572
|
+
const STORAGE: 0x0080;
|
|
12573
|
+
const INDIRECT: 0x0100;
|
|
12574
|
+
const QUERY_RESOLVE: 0x0200;
|
|
12575
|
+
}
|
|
12576
|
+
|
|
12577
|
+
declare namespace GPUColorWrite {
|
|
12578
|
+
const RED: 0x1;
|
|
12579
|
+
const GREEN: 0x2;
|
|
12580
|
+
const BLUE: 0x4;
|
|
12581
|
+
const ALPHA: 0x8;
|
|
12582
|
+
const ALL: 0xF;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12585
|
+
declare namespace GPUMapMode {
|
|
12586
|
+
const READ: 0x0001;
|
|
12587
|
+
const WRITE: 0x0002;
|
|
12588
|
+
}
|
|
12589
|
+
|
|
12590
|
+
declare namespace GPUShaderStage {
|
|
12591
|
+
const VERTEX: 0x1;
|
|
12592
|
+
const FRAGMENT: 0x2;
|
|
12593
|
+
const COMPUTE: 0x4;
|
|
12594
|
+
}
|
|
12595
|
+
|
|
12596
|
+
declare namespace GPUTextureUsage {
|
|
12597
|
+
const COPY_SRC: 0x01;
|
|
12598
|
+
const COPY_DST: 0x02;
|
|
12599
|
+
const TEXTURE_BINDING: 0x04;
|
|
12600
|
+
const STORAGE_BINDING: 0x08;
|
|
12601
|
+
const RENDER_ATTACHMENT: 0x10;
|
|
12602
|
+
const TRANSIENT_ATTACHMENT: 0x20;
|
|
12603
|
+
}
|
|
12604
|
+
|
|
12564
12605
|
declare namespace WebAssembly {
|
|
12565
12606
|
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
|
|
12566
12607
|
interface CompileError extends Error {
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -12561,6 +12561,47 @@ declare var XMLHttpRequestUpload: {
|
|
|
12561
12561
|
new(): XMLHttpRequestUpload;
|
|
12562
12562
|
};
|
|
12563
12563
|
|
|
12564
|
+
declare namespace GPUBufferUsage {
|
|
12565
|
+
const MAP_READ: 0x0001;
|
|
12566
|
+
const MAP_WRITE: 0x0002;
|
|
12567
|
+
const COPY_SRC: 0x0004;
|
|
12568
|
+
const COPY_DST: 0x0008;
|
|
12569
|
+
const INDEX: 0x0010;
|
|
12570
|
+
const VERTEX: 0x0020;
|
|
12571
|
+
const UNIFORM: 0x0040;
|
|
12572
|
+
const STORAGE: 0x0080;
|
|
12573
|
+
const INDIRECT: 0x0100;
|
|
12574
|
+
const QUERY_RESOLVE: 0x0200;
|
|
12575
|
+
}
|
|
12576
|
+
|
|
12577
|
+
declare namespace GPUColorWrite {
|
|
12578
|
+
const RED: 0x1;
|
|
12579
|
+
const GREEN: 0x2;
|
|
12580
|
+
const BLUE: 0x4;
|
|
12581
|
+
const ALPHA: 0x8;
|
|
12582
|
+
const ALL: 0xF;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12585
|
+
declare namespace GPUMapMode {
|
|
12586
|
+
const READ: 0x0001;
|
|
12587
|
+
const WRITE: 0x0002;
|
|
12588
|
+
}
|
|
12589
|
+
|
|
12590
|
+
declare namespace GPUShaderStage {
|
|
12591
|
+
const VERTEX: 0x1;
|
|
12592
|
+
const FRAGMENT: 0x2;
|
|
12593
|
+
const COMPUTE: 0x4;
|
|
12594
|
+
}
|
|
12595
|
+
|
|
12596
|
+
declare namespace GPUTextureUsage {
|
|
12597
|
+
const COPY_SRC: 0x01;
|
|
12598
|
+
const COPY_DST: 0x02;
|
|
12599
|
+
const TEXTURE_BINDING: 0x04;
|
|
12600
|
+
const STORAGE_BINDING: 0x08;
|
|
12601
|
+
const RENDER_ATTACHMENT: 0x10;
|
|
12602
|
+
const TRANSIENT_ATTACHMENT: 0x20;
|
|
12603
|
+
}
|
|
12604
|
+
|
|
12564
12605
|
declare namespace WebAssembly {
|
|
12565
12606
|
/** The **`WebAssembly.CompileError`** object indicates an error during WebAssembly decoding or validation. */
|
|
12566
12607
|
interface CompileError extends Error {
|