@types/sharedworker 0.0.195 → 0.0.196

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
@@ -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.195 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.195.
31
+ You can read what changed in version 0.0.196 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.196.
package/index.d.ts CHANGED
@@ -9396,6 +9396,7 @@ interface WebGLRenderingContextBase {
9396
9396
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
9397
9397
  getError(): GLenum;
9398
9398
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
9399
+ getExtension(name: string): any;
9399
9400
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
9400
9401
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
9401
9402
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -9430,7 +9431,6 @@ interface WebGLRenderingContextBase {
9430
9431
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
9431
9432
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
9432
9433
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
9433
- getExtension(name: string): any;
9434
9434
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
9435
9435
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
9436
9436
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.195",
3
+ "version": "0.0.196",
4
4
  "description": "Types for the global scope of Shared Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -9393,6 +9393,7 @@ interface WebGLRenderingContextBase {
9393
9393
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
9394
9394
  getError(): GLenum;
9395
9395
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
9396
+ getExtension(name: string): any;
9396
9397
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
9397
9398
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
9398
9399
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -9427,7 +9428,6 @@ interface WebGLRenderingContextBase {
9427
9428
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
9428
9429
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
9429
9430
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
9430
- getExtension(name: string): any;
9431
9431
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
9432
9432
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
9433
9433
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
package/ts5.6/index.d.ts CHANGED
@@ -9393,6 +9393,7 @@ interface WebGLRenderingContextBase {
9393
9393
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
9394
9394
  getError(): GLenum;
9395
9395
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
9396
+ getExtension(name: string): any;
9396
9397
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
9397
9398
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
9398
9399
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -9427,7 +9428,6 @@ interface WebGLRenderingContextBase {
9427
9428
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
9428
9429
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
9429
9430
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
9430
- getExtension(name: string): any;
9431
9431
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
9432
9432
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
9433
9433
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
package/ts5.9/index.d.ts CHANGED
@@ -9393,6 +9393,7 @@ interface WebGLRenderingContextBase {
9393
9393
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
9394
9394
  getError(): GLenum;
9395
9395
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
9396
+ getExtension(name: string): any;
9396
9397
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
9397
9398
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
9398
9399
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -9427,7 +9428,6 @@ interface WebGLRenderingContextBase {
9427
9428
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
9428
9429
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
9429
9430
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
9430
- getExtension(name: string): any;
9431
9431
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
9432
9432
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
9433
9433
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */