@types/web 0.0.170 → 0.0.171
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 +17 -3
- package/package.json +1 -1
- package/ts5.5/index.d.ts +17 -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.171 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.171.
|
package/index.d.ts
CHANGED
|
@@ -4805,6 +4805,8 @@ interface CSSStyleDeclaration {
|
|
|
4805
4805
|
pointerEvents: string;
|
|
4806
4806
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
|
|
4807
4807
|
position: string;
|
|
4808
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
|
|
4809
|
+
positionArea: string;
|
|
4808
4810
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
|
|
4809
4811
|
printColorAdjust: string;
|
|
4810
4812
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
@@ -10147,7 +10149,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10147
10149
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
|
|
10148
10150
|
*/
|
|
10149
10151
|
readonly form: HTMLFormElement | null;
|
|
10150
|
-
/**
|
|
10152
|
+
/**
|
|
10153
|
+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
10154
|
+
*
|
|
10155
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
|
|
10156
|
+
*/
|
|
10151
10157
|
formAction: string;
|
|
10152
10158
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
10153
10159
|
formEnctype: string;
|
|
@@ -11413,7 +11419,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11413
11419
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
|
|
11414
11420
|
*/
|
|
11415
11421
|
readonly form: HTMLFormElement | null;
|
|
11416
|
-
/**
|
|
11422
|
+
/**
|
|
11423
|
+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
11424
|
+
*
|
|
11425
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
|
|
11426
|
+
*/
|
|
11417
11427
|
formAction: string;
|
|
11418
11428
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
11419
11429
|
formEnctype: string;
|
|
@@ -19309,7 +19319,11 @@ interface Request extends Body {
|
|
|
19309
19319
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
|
|
19310
19320
|
*/
|
|
19311
19321
|
readonly integrity: string;
|
|
19312
|
-
/**
|
|
19322
|
+
/**
|
|
19323
|
+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
|
|
19324
|
+
*
|
|
19325
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
|
|
19326
|
+
*/
|
|
19313
19327
|
readonly keepalive: boolean;
|
|
19314
19328
|
/**
|
|
19315
19329
|
* Returns request's HTTP method, which is "GET" by default.
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -4805,6 +4805,8 @@ interface CSSStyleDeclaration {
|
|
|
4805
4805
|
pointerEvents: string;
|
|
4806
4806
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
|
|
4807
4807
|
position: string;
|
|
4808
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
|
|
4809
|
+
positionArea: string;
|
|
4808
4810
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
|
|
4809
4811
|
printColorAdjust: string;
|
|
4810
4812
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
@@ -10147,7 +10149,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10147
10149
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
|
|
10148
10150
|
*/
|
|
10149
10151
|
readonly form: HTMLFormElement | null;
|
|
10150
|
-
/**
|
|
10152
|
+
/**
|
|
10153
|
+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
10154
|
+
*
|
|
10155
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
|
|
10156
|
+
*/
|
|
10151
10157
|
formAction: string;
|
|
10152
10158
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
10153
10159
|
formEnctype: string;
|
|
@@ -11413,7 +11419,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11413
11419
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
|
|
11414
11420
|
*/
|
|
11415
11421
|
readonly form: HTMLFormElement | null;
|
|
11416
|
-
/**
|
|
11422
|
+
/**
|
|
11423
|
+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
|
|
11424
|
+
*
|
|
11425
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
|
|
11426
|
+
*/
|
|
11417
11427
|
formAction: string;
|
|
11418
11428
|
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
|
|
11419
11429
|
formEnctype: string;
|
|
@@ -19309,7 +19319,11 @@ interface Request extends Body {
|
|
|
19309
19319
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
|
|
19310
19320
|
*/
|
|
19311
19321
|
readonly integrity: string;
|
|
19312
|
-
/**
|
|
19322
|
+
/**
|
|
19323
|
+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
|
|
19324
|
+
*
|
|
19325
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
|
|
19326
|
+
*/
|
|
19313
19327
|
readonly keepalive: boolean;
|
|
19314
19328
|
/**
|
|
19315
19329
|
* Returns request's HTTP method, which is "GET" by default.
|