@types/web 0.0.173 → 0.0.175

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.173 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.173.
50
+ You can read what changed in version 0.0.175 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.175.
package/index.d.ts CHANGED
@@ -8468,11 +8468,13 @@ declare var EncodedVideoChunk: {
8468
8468
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8469
8469
  */
8470
8470
  interface ErrorEvent extends Event {
8471
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8471
8472
  readonly colno: number;
8472
8473
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8473
8474
  readonly error: any;
8474
8475
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8475
8476
  readonly filename: string;
8477
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8476
8478
  readonly lineno: number;
8477
8479
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8478
8480
  readonly message: string;
@@ -10158,7 +10160,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
10158
10160
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10159
10161
  */
10160
10162
  formAction: string;
10161
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
10163
+ /**
10164
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
10165
+ *
10166
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
10167
+ */
10162
10168
  formEnctype: string;
10163
10169
  /**
10164
10170
  * Overrides the submit method attribute previously specified on a form element.
@@ -11436,7 +11442,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11436
11442
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11437
11443
  */
11438
11444
  formAction: string;
11439
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11445
+ /**
11446
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
11447
+ *
11448
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11449
+ */
11440
11450
  formEnctype: string;
11441
11451
  /**
11442
11452
  * Overrides the submit method attribute previously specified on a form element.
@@ -12834,6 +12844,7 @@ declare var HTMLScriptElement: {
12834
12844
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
12835
12845
  */
12836
12846
  interface HTMLSelectElement extends HTMLElement {
12847
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
12837
12848
  autocomplete: AutoFill;
12838
12849
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
12839
12850
  disabled: boolean;
@@ -25382,6 +25393,7 @@ interface WebGLRenderingContextBase {
25382
25393
  readonly drawingBufferHeight: GLsizei;
25383
25394
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
25384
25395
  readonly drawingBufferWidth: GLsizei;
25396
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
25385
25397
  unpackColorSpace: PredefinedColorSpace;
25386
25398
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
25387
25399
  activeTexture(texture: GLenum): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.173",
3
+ "version": "0.0.175",
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
@@ -8468,11 +8468,13 @@ declare var EncodedVideoChunk: {
8468
8468
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8469
8469
  */
8470
8470
  interface ErrorEvent extends Event {
8471
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8471
8472
  readonly colno: number;
8472
8473
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8473
8474
  readonly error: any;
8474
8475
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8475
8476
  readonly filename: string;
8477
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8476
8478
  readonly lineno: number;
8477
8479
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8478
8480
  readonly message: string;
@@ -10158,7 +10160,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
10158
10160
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10159
10161
  */
10160
10162
  formAction: string;
10161
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
10163
+ /**
10164
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
10165
+ *
10166
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
10167
+ */
10162
10168
  formEnctype: string;
10163
10169
  /**
10164
10170
  * Overrides the submit method attribute previously specified on a form element.
@@ -11436,7 +11442,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11436
11442
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11437
11443
  */
11438
11444
  formAction: string;
11439
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11445
+ /**
11446
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
11447
+ *
11448
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11449
+ */
11440
11450
  formEnctype: string;
11441
11451
  /**
11442
11452
  * Overrides the submit method attribute previously specified on a form element.
@@ -12834,6 +12844,7 @@ declare var HTMLScriptElement: {
12834
12844
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
12835
12845
  */
12836
12846
  interface HTMLSelectElement extends HTMLElement {
12847
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
12837
12848
  autocomplete: AutoFill;
12838
12849
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
12839
12850
  disabled: boolean;
@@ -25382,6 +25393,7 @@ interface WebGLRenderingContextBase {
25382
25393
  readonly drawingBufferHeight: GLsizei;
25383
25394
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
25384
25395
  readonly drawingBufferWidth: GLsizei;
25396
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
25385
25397
  unpackColorSpace: PredefinedColorSpace;
25386
25398
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
25387
25399
  activeTexture(texture: GLenum): void;