@types/web 0.0.293 → 0.0.295

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
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.293 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.293.
50
+ You can read what changed in version 0.0.295 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.295.
package/index.d.ts CHANGED
@@ -15999,7 +15999,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
15999
15999
  *
16000
16000
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)
16001
16001
  */
16002
- hidden: boolean;
16002
+ hidden: boolean | "until-found";
16003
16003
  /**
16004
16004
  * The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible.
16005
16005
  *
@@ -38001,6 +38001,7 @@ interface WebGLRenderingContextBase {
38001
38001
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
38002
38002
  getError(): GLenum;
38003
38003
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
38004
+ getExtension(name: string): any;
38004
38005
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
38005
38006
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
38006
38007
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -38035,7 +38036,6 @@ interface WebGLRenderingContextBase {
38035
38036
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
38036
38037
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
38037
38038
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
38038
- getExtension(name: string): any;
38039
38039
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
38040
38040
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
38041
38041
  /** [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/web",
3
- "version": "0.0.293",
3
+ "version": "0.0.295",
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
@@ -15983,7 +15983,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
15983
15983
  *
15984
15984
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)
15985
15985
  */
15986
- hidden: boolean;
15986
+ hidden: boolean | "until-found";
15987
15987
  /**
15988
15988
  * The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible.
15989
15989
  *
@@ -37975,6 +37975,7 @@ interface WebGLRenderingContextBase {
37975
37975
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
37976
37976
  getError(): GLenum;
37977
37977
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
37978
+ getExtension(name: string): any;
37978
37979
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
37979
37980
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
37980
37981
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -38009,7 +38010,6 @@ interface WebGLRenderingContextBase {
38009
38010
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
38010
38011
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
38011
38012
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
38012
- getExtension(name: string): any;
38013
38013
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
38014
38014
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
38015
38015
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
package/ts5.6/index.d.ts CHANGED
@@ -15996,7 +15996,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
15996
15996
  *
15997
15997
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)
15998
15998
  */
15999
- hidden: boolean;
15999
+ hidden: boolean | "until-found";
16000
16000
  /**
16001
16001
  * The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible.
16002
16002
  *
@@ -37998,6 +37998,7 @@ interface WebGLRenderingContextBase {
37998
37998
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
37999
37999
  getError(): GLenum;
38000
38000
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
38001
+ getExtension(name: string): any;
38001
38002
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
38002
38003
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
38003
38004
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -38032,7 +38033,6 @@ interface WebGLRenderingContextBase {
38032
38033
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
38033
38034
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
38034
38035
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
38035
- getExtension(name: string): any;
38036
38036
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
38037
38037
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
38038
38038
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */
package/ts5.9/index.d.ts CHANGED
@@ -15996,7 +15996,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
15996
15996
  *
15997
15997
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)
15998
15998
  */
15999
- hidden: boolean;
15999
+ hidden: boolean | "until-found";
16000
16000
  /**
16001
16001
  * The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible.
16002
16002
  *
@@ -37998,6 +37998,7 @@ interface WebGLRenderingContextBase {
37998
37998
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */
37999
37999
  getError(): GLenum;
38000
38000
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */
38001
+ getExtension(name: string): any;
38001
38002
  getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
38002
38003
  getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
38003
38004
  getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
@@ -38032,7 +38033,6 @@ interface WebGLRenderingContextBase {
38032
38033
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
38033
38034
  getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
38034
38035
  getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
38035
- getExtension(name: string): any;
38036
38036
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */
38037
38037
  getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
38038
38038
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */