@types/sharedworker 0.0.110 → 0.0.112
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 +5 -2
- package/iterable.d.ts +5 -0
- 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.
|
|
31
|
+
You can read what changed in version 0.0.112 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.112.
|
package/index.d.ts
CHANGED
|
@@ -791,6 +791,8 @@ declare var AbortSignal: {
|
|
|
791
791
|
new(): AbortSignal;
|
|
792
792
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
|
|
793
793
|
// abort(reason?: any): AbortSignal; - To be re-added in the future
|
|
794
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
|
|
795
|
+
any(signals: AbortSignal[]): AbortSignal;
|
|
794
796
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
|
|
795
797
|
timeout(milliseconds: number): AbortSignal;
|
|
796
798
|
};
|
|
@@ -5370,7 +5372,6 @@ declare var WebGL2RenderingContext: {
|
|
|
5370
5372
|
readonly STENCIL: 0x1802;
|
|
5371
5373
|
readonly RED: 0x1903;
|
|
5372
5374
|
readonly RGB8: 0x8051;
|
|
5373
|
-
readonly RGBA8: 0x8058;
|
|
5374
5375
|
readonly RGB10_A2: 0x8059;
|
|
5375
5376
|
readonly TEXTURE_BINDING_3D: 0x806A;
|
|
5376
5377
|
readonly UNPACK_SKIP_IMAGES: 0x806D;
|
|
@@ -5881,6 +5882,7 @@ declare var WebGL2RenderingContext: {
|
|
|
5881
5882
|
readonly RENDERBUFFER: 0x8D41;
|
|
5882
5883
|
readonly RGBA4: 0x8056;
|
|
5883
5884
|
readonly RGB5_A1: 0x8057;
|
|
5885
|
+
readonly RGBA8: 0x8058;
|
|
5884
5886
|
readonly RGB565: 0x8D62;
|
|
5885
5887
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
5886
5888
|
readonly STENCIL_INDEX8: 0x8D48;
|
|
@@ -6115,7 +6117,6 @@ interface WebGL2RenderingContextBase {
|
|
|
6115
6117
|
readonly STENCIL: 0x1802;
|
|
6116
6118
|
readonly RED: 0x1903;
|
|
6117
6119
|
readonly RGB8: 0x8051;
|
|
6118
|
-
readonly RGBA8: 0x8058;
|
|
6119
6120
|
readonly RGB10_A2: 0x8059;
|
|
6120
6121
|
readonly TEXTURE_BINDING_3D: 0x806A;
|
|
6121
6122
|
readonly UNPACK_SKIP_IMAGES: 0x806D;
|
|
@@ -6788,6 +6789,7 @@ declare var WebGLRenderingContext: {
|
|
|
6788
6789
|
readonly RENDERBUFFER: 0x8D41;
|
|
6789
6790
|
readonly RGBA4: 0x8056;
|
|
6790
6791
|
readonly RGB5_A1: 0x8057;
|
|
6792
|
+
readonly RGBA8: 0x8058;
|
|
6791
6793
|
readonly RGB565: 0x8D62;
|
|
6792
6794
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
6793
6795
|
readonly STENCIL_INDEX8: 0x8D48;
|
|
@@ -7361,6 +7363,7 @@ interface WebGLRenderingContextBase {
|
|
|
7361
7363
|
readonly RENDERBUFFER: 0x8D41;
|
|
7362
7364
|
readonly RGBA4: 0x8056;
|
|
7363
7365
|
readonly RGB5_A1: 0x8057;
|
|
7366
|
+
readonly RGBA8: 0x8058;
|
|
7364
7367
|
readonly RGB565: 0x8D62;
|
|
7365
7368
|
readonly DEPTH_COMPONENT16: 0x81A5;
|
|
7366
7369
|
readonly STENCIL_INDEX8: 0x8D48;
|
package/iterable.d.ts
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
/// SharedWorker 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]>;
|