@types/web 0.0.173 → 0.0.174
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 +13 -2
- package/package.json +1 -1
- package/ts5.5/index.d.ts +13 -2
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.
|
|
50
|
+
You can read what changed in version 0.0.174 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.174.
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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.
|
|
@@ -25382,6 +25392,7 @@ interface WebGLRenderingContextBase {
|
|
|
25382
25392
|
readonly drawingBufferHeight: GLsizei;
|
|
25383
25393
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
|
|
25384
25394
|
readonly drawingBufferWidth: GLsizei;
|
|
25395
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
|
|
25385
25396
|
unpackColorSpace: PredefinedColorSpace;
|
|
25386
25397
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
|
|
25387
25398
|
activeTexture(texture: GLenum): void;
|
package/package.json
CHANGED
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
|
-
/**
|
|
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
|
-
/**
|
|
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.
|
|
@@ -25382,6 +25392,7 @@ interface WebGLRenderingContextBase {
|
|
|
25382
25392
|
readonly drawingBufferHeight: GLsizei;
|
|
25383
25393
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
|
|
25384
25394
|
readonly drawingBufferWidth: GLsizei;
|
|
25395
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
|
|
25385
25396
|
unpackColorSpace: PredefinedColorSpace;
|
|
25386
25397
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
|
|
25387
25398
|
activeTexture(texture: GLenum): void;
|