@types/webworker 0.0.42 → 0.0.44
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 +2 -3
- package/package.json +1 -1
- package/ts5.5/index.d.ts +2 -3
- package/ts5.6/index.d.ts +2 -3
- package/ts5.9/index.d.ts +2 -3
package/README.md
CHANGED
|
@@ -45,4 +45,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
45
45
|
|
|
46
46
|
## Deploy Metadata
|
|
47
47
|
|
|
48
|
-
You can read what changed in version 0.0.
|
|
48
|
+
You can read what changed in version 0.0.44 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.44.
|
package/index.d.ts
CHANGED
|
@@ -7468,7 +7468,7 @@ interface RTCEncodedVideoFrame {
|
|
|
7468
7468
|
*
|
|
7469
7469
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
|
|
7470
7470
|
*/
|
|
7471
|
-
readonly type:
|
|
7471
|
+
readonly type: EncodedVideoChunkType;
|
|
7472
7472
|
/**
|
|
7473
7473
|
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
|
|
7474
7474
|
*
|
|
@@ -11303,6 +11303,7 @@ interface WebGLRenderingContextBase {
|
|
|
11303
11303
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
|
|
11304
11304
|
getError(): GLenum;
|
|
11305
11305
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
|
|
11306
|
+
getExtension(name: string): any;
|
|
11306
11307
|
getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
|
|
11307
11308
|
getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
|
|
11308
11309
|
getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
|
|
@@ -11337,7 +11338,6 @@ interface WebGLRenderingContextBase {
|
|
|
11337
11338
|
getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
|
|
11338
11339
|
getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
|
|
11339
11340
|
getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
|
|
11340
|
-
getExtension(name: string): any;
|
|
11341
11341
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
|
|
11342
11342
|
getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
|
|
11343
11343
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
|
|
@@ -13508,7 +13508,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
|
|
|
13508
13508
|
type PremultiplyAlpha = "default" | "none" | "premultiply";
|
|
13509
13509
|
type PushEncryptionKeyName = "auth" | "p256dh";
|
|
13510
13510
|
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
|
|
13511
|
-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
|
|
13512
13511
|
type ReadableStreamReaderMode = "byob";
|
|
13513
13512
|
type ReadableStreamType = "bytes";
|
|
13514
13513
|
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -7465,7 +7465,7 @@ interface RTCEncodedVideoFrame {
|
|
|
7465
7465
|
*
|
|
7466
7466
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
|
|
7467
7467
|
*/
|
|
7468
|
-
readonly type:
|
|
7468
|
+
readonly type: EncodedVideoChunkType;
|
|
7469
7469
|
/**
|
|
7470
7470
|
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
|
|
7471
7471
|
*
|
|
@@ -11300,6 +11300,7 @@ interface WebGLRenderingContextBase {
|
|
|
11300
11300
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
|
|
11301
11301
|
getError(): GLenum;
|
|
11302
11302
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
|
|
11303
|
+
getExtension(name: string): any;
|
|
11303
11304
|
getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
|
|
11304
11305
|
getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
|
|
11305
11306
|
getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
|
|
@@ -11334,7 +11335,6 @@ interface WebGLRenderingContextBase {
|
|
|
11334
11335
|
getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
|
|
11335
11336
|
getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
|
|
11336
11337
|
getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
|
|
11337
|
-
getExtension(name: string): any;
|
|
11338
11338
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
|
|
11339
11339
|
getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
|
|
11340
11340
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
|
|
@@ -13505,7 +13505,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
|
|
|
13505
13505
|
type PremultiplyAlpha = "default" | "none" | "premultiply";
|
|
13506
13506
|
type PushEncryptionKeyName = "auth" | "p256dh";
|
|
13507
13507
|
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
|
|
13508
|
-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
|
|
13509
13508
|
type ReadableStreamReaderMode = "byob";
|
|
13510
13509
|
type ReadableStreamType = "bytes";
|
|
13511
13510
|
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -7465,7 +7465,7 @@ interface RTCEncodedVideoFrame {
|
|
|
7465
7465
|
*
|
|
7466
7466
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
|
|
7467
7467
|
*/
|
|
7468
|
-
readonly type:
|
|
7468
|
+
readonly type: EncodedVideoChunkType;
|
|
7469
7469
|
/**
|
|
7470
7470
|
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
|
|
7471
7471
|
*
|
|
@@ -11300,6 +11300,7 @@ interface WebGLRenderingContextBase {
|
|
|
11300
11300
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
|
|
11301
11301
|
getError(): GLenum;
|
|
11302
11302
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
|
|
11303
|
+
getExtension(name: string): any;
|
|
11303
11304
|
getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
|
|
11304
11305
|
getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
|
|
11305
11306
|
getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
|
|
@@ -11334,7 +11335,6 @@ interface WebGLRenderingContextBase {
|
|
|
11334
11335
|
getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
|
|
11335
11336
|
getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
|
|
11336
11337
|
getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
|
|
11337
|
-
getExtension(name: string): any;
|
|
11338
11338
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
|
|
11339
11339
|
getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
|
|
11340
11340
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
|
|
@@ -13505,7 +13505,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
|
|
|
13505
13505
|
type PremultiplyAlpha = "default" | "none" | "premultiply";
|
|
13506
13506
|
type PushEncryptionKeyName = "auth" | "p256dh";
|
|
13507
13507
|
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
|
|
13508
|
-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
|
|
13509
13508
|
type ReadableStreamReaderMode = "byob";
|
|
13510
13509
|
type ReadableStreamType = "bytes";
|
|
13511
13510
|
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -7465,7 +7465,7 @@ interface RTCEncodedVideoFrame {
|
|
|
7465
7465
|
*
|
|
7466
7466
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
|
|
7467
7467
|
*/
|
|
7468
|
-
readonly type:
|
|
7468
|
+
readonly type: EncodedVideoChunkType;
|
|
7469
7469
|
/**
|
|
7470
7470
|
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
|
|
7471
7471
|
*
|
|
@@ -11300,6 +11300,7 @@ interface WebGLRenderingContextBase {
|
|
|
11300
11300
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
|
|
11301
11301
|
getError(): GLenum;
|
|
11302
11302
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
|
|
11303
|
+
getExtension(name: string): any;
|
|
11303
11304
|
getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
|
|
11304
11305
|
getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
|
|
11305
11306
|
getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
|
|
@@ -11334,7 +11335,6 @@ interface WebGLRenderingContextBase {
|
|
|
11334
11335
|
getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
|
|
11335
11336
|
getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
|
|
11336
11337
|
getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
|
|
11337
|
-
getExtension(name: string): any;
|
|
11338
11338
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
|
|
11339
11339
|
getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
|
|
11340
11340
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
|
|
@@ -13505,7 +13505,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
|
|
|
13505
13505
|
type PremultiplyAlpha = "default" | "none" | "premultiply";
|
|
13506
13506
|
type PushEncryptionKeyName = "auth" | "p256dh";
|
|
13507
13507
|
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
|
|
13508
|
-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
|
|
13509
13508
|
type ReadableStreamReaderMode = "byob";
|
|
13510
13509
|
type ReadableStreamType = "bytes";
|
|
13511
13510
|
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|