@types/web 0.0.276 → 0.0.278
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 +3 -2
- package/package.json +1 -1
- package/ts5.5/index.d.ts +3 -2
- package/ts5.6/index.d.ts +3 -2
- package/ts5.9/index.d.ts +3 -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.278 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.278.
|
package/index.d.ts
CHANGED
|
@@ -6367,6 +6367,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
|
6367
6367
|
display: string;
|
|
6368
6368
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
|
|
6369
6369
|
dominantBaseline: string;
|
|
6370
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
|
|
6370
6371
|
dynamicRangeLimit: string;
|
|
6371
6372
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
|
|
6372
6373
|
emptyCells: string;
|
|
@@ -23617,7 +23618,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
|
|
|
23617
23618
|
*/
|
|
23618
23619
|
readonly cancelable: boolean;
|
|
23619
23620
|
/**
|
|
23620
|
-
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23621
|
+
* The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23621
23622
|
*
|
|
23622
23623
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
|
|
23623
23624
|
*/
|
|
@@ -32720,7 +32721,7 @@ interface TextTrackListEventMap {
|
|
|
32720
32721
|
}
|
|
32721
32722
|
|
|
32722
32723
|
/**
|
|
32723
|
-
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate
|
|
32724
|
+
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
|
|
32724
32725
|
*
|
|
32725
32726
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
|
|
32726
32727
|
*/
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -6357,6 +6357,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
|
6357
6357
|
display: string;
|
|
6358
6358
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
|
|
6359
6359
|
dominantBaseline: string;
|
|
6360
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
|
|
6360
6361
|
dynamicRangeLimit: string;
|
|
6361
6362
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
|
|
6362
6363
|
emptyCells: string;
|
|
@@ -23593,7 +23594,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
|
|
|
23593
23594
|
*/
|
|
23594
23595
|
readonly cancelable: boolean;
|
|
23595
23596
|
/**
|
|
23596
|
-
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23597
|
+
* The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23597
23598
|
*
|
|
23598
23599
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
|
|
23599
23600
|
*/
|
|
@@ -32694,7 +32695,7 @@ interface TextTrackListEventMap {
|
|
|
32694
32695
|
}
|
|
32695
32696
|
|
|
32696
32697
|
/**
|
|
32697
|
-
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate
|
|
32698
|
+
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
|
|
32698
32699
|
*
|
|
32699
32700
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
|
|
32700
32701
|
*/
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -6364,6 +6364,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
|
6364
6364
|
display: string;
|
|
6365
6365
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
|
|
6366
6366
|
dominantBaseline: string;
|
|
6367
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
|
|
6367
6368
|
dynamicRangeLimit: string;
|
|
6368
6369
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
|
|
6369
6370
|
emptyCells: string;
|
|
@@ -23614,7 +23615,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
|
|
|
23614
23615
|
*/
|
|
23615
23616
|
readonly cancelable: boolean;
|
|
23616
23617
|
/**
|
|
23617
|
-
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23618
|
+
* The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23618
23619
|
*
|
|
23619
23620
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
|
|
23620
23621
|
*/
|
|
@@ -32717,7 +32718,7 @@ interface TextTrackListEventMap {
|
|
|
32717
32718
|
}
|
|
32718
32719
|
|
|
32719
32720
|
/**
|
|
32720
|
-
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate
|
|
32721
|
+
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
|
|
32721
32722
|
*
|
|
32722
32723
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
|
|
32723
32724
|
*/
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -6364,6 +6364,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
|
6364
6364
|
display: string;
|
|
6365
6365
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
|
|
6366
6366
|
dominantBaseline: string;
|
|
6367
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
|
|
6367
6368
|
dynamicRangeLimit: string;
|
|
6368
6369
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
|
|
6369
6370
|
emptyCells: string;
|
|
@@ -23614,7 +23615,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
|
|
|
23614
23615
|
*/
|
|
23615
23616
|
readonly cancelable: boolean;
|
|
23616
23617
|
/**
|
|
23617
|
-
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23618
|
+
* The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
|
|
23618
23619
|
*
|
|
23619
23620
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
|
|
23620
23621
|
*/
|
|
@@ -32717,7 +32718,7 @@ interface TextTrackListEventMap {
|
|
|
32717
32718
|
}
|
|
32718
32719
|
|
|
32719
32720
|
/**
|
|
32720
|
-
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate
|
|
32721
|
+
* The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
|
|
32721
32722
|
*
|
|
32722
32723
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
|
|
32723
32724
|
*/
|