@types/web 0.0.172 → 0.0.173
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 +18 -3
- package/package.json +1 -1
- package/ts5.5/index.d.ts +18 -3
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.173 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.173.
|
package/index.d.ts
CHANGED
|
@@ -8469,9 +8469,12 @@ declare var EncodedVideoChunk: {
|
|
|
8469
8469
|
*/
|
|
8470
8470
|
interface ErrorEvent extends Event {
|
|
8471
8471
|
readonly colno: number;
|
|
8472
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
8472
8473
|
readonly error: any;
|
|
8474
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
8473
8475
|
readonly filename: string;
|
|
8474
8476
|
readonly lineno: number;
|
|
8477
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
8475
8478
|
readonly message: string;
|
|
8476
8479
|
}
|
|
8477
8480
|
|
|
@@ -10157,7 +10160,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10157
10160
|
formAction: string;
|
|
10158
10161
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
10159
10162
|
formEnctype: string;
|
|
10160
|
-
/**
|
|
10163
|
+
/**
|
|
10164
|
+
* Overrides the submit method attribute previously specified on a form element.
|
|
10165
|
+
*
|
|
10166
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
|
|
10167
|
+
*/
|
|
10161
10168
|
formMethod: string;
|
|
10162
10169
|
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
10163
10170
|
formNoValidate: boolean;
|
|
@@ -10746,7 +10753,11 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
10746
10753
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
|
|
10747
10754
|
*/
|
|
10748
10755
|
action: string;
|
|
10749
|
-
/**
|
|
10756
|
+
/**
|
|
10757
|
+
* Specifies whether autocomplete is applied to an editable text field.
|
|
10758
|
+
*
|
|
10759
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
|
|
10760
|
+
*/
|
|
10750
10761
|
autocomplete: AutoFillBase;
|
|
10751
10762
|
/**
|
|
10752
10763
|
* Retrieves a collection, in source order, of all controls in a given form.
|
|
@@ -11427,7 +11438,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11427
11438
|
formAction: string;
|
|
11428
11439
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
11429
11440
|
formEnctype: string;
|
|
11430
|
-
/**
|
|
11441
|
+
/**
|
|
11442
|
+
* Overrides the submit method attribute previously specified on a form element.
|
|
11443
|
+
*
|
|
11444
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
|
|
11445
|
+
*/
|
|
11431
11446
|
formMethod: string;
|
|
11432
11447
|
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
11433
11448
|
formNoValidate: boolean;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -8469,9 +8469,12 @@ declare var EncodedVideoChunk: {
|
|
|
8469
8469
|
*/
|
|
8470
8470
|
interface ErrorEvent extends Event {
|
|
8471
8471
|
readonly colno: number;
|
|
8472
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
8472
8473
|
readonly error: any;
|
|
8474
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
8473
8475
|
readonly filename: string;
|
|
8474
8476
|
readonly lineno: number;
|
|
8477
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
8475
8478
|
readonly message: string;
|
|
8476
8479
|
}
|
|
8477
8480
|
|
|
@@ -10157,7 +10160,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10157
10160
|
formAction: string;
|
|
10158
10161
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
10159
10162
|
formEnctype: string;
|
|
10160
|
-
/**
|
|
10163
|
+
/**
|
|
10164
|
+
* Overrides the submit method attribute previously specified on a form element.
|
|
10165
|
+
*
|
|
10166
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
|
|
10167
|
+
*/
|
|
10161
10168
|
formMethod: string;
|
|
10162
10169
|
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
10163
10170
|
formNoValidate: boolean;
|
|
@@ -10746,7 +10753,11 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
10746
10753
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
|
|
10747
10754
|
*/
|
|
10748
10755
|
action: string;
|
|
10749
|
-
/**
|
|
10756
|
+
/**
|
|
10757
|
+
* Specifies whether autocomplete is applied to an editable text field.
|
|
10758
|
+
*
|
|
10759
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
|
|
10760
|
+
*/
|
|
10750
10761
|
autocomplete: AutoFillBase;
|
|
10751
10762
|
/**
|
|
10752
10763
|
* Retrieves a collection, in source order, of all controls in a given form.
|
|
@@ -11427,7 +11438,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11427
11438
|
formAction: string;
|
|
11428
11439
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
11429
11440
|
formEnctype: string;
|
|
11430
|
-
/**
|
|
11441
|
+
/**
|
|
11442
|
+
* Overrides the submit method attribute previously specified on a form element.
|
|
11443
|
+
*
|
|
11444
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
|
|
11445
|
+
*/
|
|
11431
11446
|
formMethod: string;
|
|
11432
11447
|
/** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
|
|
11433
11448
|
formNoValidate: boolean;
|