@types/web 0.0.267 → 0.0.268

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.267 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.267.
50
+ You can read what changed in version 0.0.268 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.268.
package/index.d.ts CHANGED
@@ -6854,6 +6854,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
6854
6854
  textAlignLast: string;
6855
6855
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
6856
6856
  textAnchor: string;
6857
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
6857
6858
  textAutospace: string;
6858
6859
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
6859
6860
  textBox: string;
@@ -14415,7 +14416,7 @@ interface HTMLFormElement extends HTMLElement {
14415
14416
  */
14416
14417
  autocomplete: AutoFillBase;
14417
14418
  /**
14418
- * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14419
+ * The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
14419
14420
  *
14420
14421
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14421
14422
  */
@@ -23819,6 +23820,7 @@ declare var PerformanceObserverEntryList: {
23819
23820
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
23820
23821
  */
23821
23822
  interface PerformancePaintTiming extends PerformanceEntry {
23823
+ toJSON(): any;
23822
23824
  }
23823
23825
 
23824
23826
  declare var PerformancePaintTiming: {
@@ -24390,7 +24392,7 @@ interface PointerEvent extends MouseEvent {
24390
24392
  */
24391
24393
  readonly persistentDeviceId: number;
24392
24394
  /**
24393
- * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24395
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
24394
24396
  *
24395
24397
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24396
24398
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.267",
3
+ "version": "0.0.268",
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
@@ -6847,6 +6847,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
6847
6847
  textAlignLast: string;
6848
6848
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
6849
6849
  textAnchor: string;
6850
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
6850
6851
  textAutospace: string;
6851
6852
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
6852
6853
  textBox: string;
@@ -14402,7 +14403,7 @@ interface HTMLFormElement extends HTMLElement {
14402
14403
  */
14403
14404
  autocomplete: AutoFillBase;
14404
14405
  /**
14405
- * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14406
+ * The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
14406
14407
  *
14407
14408
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14408
14409
  */
@@ -23798,6 +23799,7 @@ declare var PerformanceObserverEntryList: {
23798
23799
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
23799
23800
  */
23800
23801
  interface PerformancePaintTiming extends PerformanceEntry {
23802
+ toJSON(): any;
23801
23803
  }
23802
23804
 
23803
23805
  declare var PerformancePaintTiming: {
@@ -24369,7 +24371,7 @@ interface PointerEvent extends MouseEvent {
24369
24371
  */
24370
24372
  readonly persistentDeviceId: number;
24371
24373
  /**
24372
- * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24374
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
24373
24375
  *
24374
24376
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24375
24377
  */
package/ts5.6/index.d.ts CHANGED
@@ -6854,6 +6854,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
6854
6854
  textAlignLast: string;
6855
6855
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
6856
6856
  textAnchor: string;
6857
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
6857
6858
  textAutospace: string;
6858
6859
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
6859
6860
  textBox: string;
@@ -14415,7 +14416,7 @@ interface HTMLFormElement extends HTMLElement {
14415
14416
  */
14416
14417
  autocomplete: AutoFillBase;
14417
14418
  /**
14418
- * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14419
+ * The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
14419
14420
  *
14420
14421
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14421
14422
  */
@@ -23819,6 +23820,7 @@ declare var PerformanceObserverEntryList: {
23819
23820
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
23820
23821
  */
23821
23822
  interface PerformancePaintTiming extends PerformanceEntry {
23823
+ toJSON(): any;
23822
23824
  }
23823
23825
 
23824
23826
  declare var PerformancePaintTiming: {
@@ -24390,7 +24392,7 @@ interface PointerEvent extends MouseEvent {
24390
24392
  */
24391
24393
  readonly persistentDeviceId: number;
24392
24394
  /**
24393
- * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24395
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
24394
24396
  *
24395
24397
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24396
24398
  */