Skip to content

Commit e95cb68

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 05186dd commit e95cb68

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36344,7 +36344,7 @@ interface TextTrackCueEventMap {
3634436344
}
3634536345

3634636346
/**
36347-
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class.
36347+
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue and DataCue; you will work with these derived types rather than the base class.
3634836348
*
3634936349
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue)
3635036350
*/

baselines/ts5.5/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36318,7 +36318,7 @@ interface TextTrackCueEventMap {
3631836318
}
3631936319

3632036320
/**
36321-
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class.
36321+
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue and DataCue; you will work with these derived types rather than the base class.
3632236322
*
3632336323
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue)
3632436324
*/

baselines/ts5.6/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36341,7 +36341,7 @@ interface TextTrackCueEventMap {
3634136341
}
3634236342

3634336343
/**
36344-
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class.
36344+
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue and DataCue; you will work with these derived types rather than the base class.
3634536345
*
3634636346
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue)
3634736347
*/

baselines/ts5.9/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36341,7 +36341,7 @@ interface TextTrackCueEventMap {
3634136341
}
3634236342

3634336343
/**
36344-
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class.
36344+
* The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue and DataCue; you will work with these derived types rather than the base class.
3634536345
*
3634636346
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue)
3634736347
*/

inputfiles/mdn.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5284,6 +5284,26 @@
52845284
"pageType": "web-api-instance-method",
52855285
"summary": "The values() method of the CustomStateSet interface returns a new iterator object that yields the values for each element in the CustomStateSet object in insertion order."
52865286
},
5287+
{
5288+
"mdn_url": "/en-US/docs/Web/API/DataCue",
5289+
"pageType": "web-api-interface",
5290+
"summary": "The DataCue interface represents a cue that associates arbitrary timed data with an audio or video media resource, or exposes timed data from a media resource to web pages. It extends the TextTrackCue interface with a value property that can hold any data type, and a type property that identifies the kind of data."
5291+
},
5292+
{
5293+
"mdn_url": "/en-US/docs/Web/API/DataCue/DataCue",
5294+
"pageType": "web-api-constructor",
5295+
"summary": "The DataCue() constructor creates and returns a new DataCue object that represents a timed metadata cue over a given time range. The resulting cue can be added to a metadata TextTrack using TextTrack.addCue(), allowing arbitrary data to be synchronized with audio or video playback."
5296+
},
5297+
{
5298+
"mdn_url": "/en-US/docs/Web/API/DataCue/type",
5299+
"pageType": "web-api-instance-property",
5300+
"summary": "The type read-only property of the DataCue interface returns a string identifying the type or schema of the data stored in the cue's value property. This is typically a reverse-domain notation string (e.g., \"org.id3\", \"com.apple.itunes\") that allows applications to interpret the cue's data payload correctly."
5301+
},
5302+
{
5303+
"mdn_url": "/en-US/docs/Web/API/DataCue/value",
5304+
"pageType": "web-api-instance-property",
5305+
"summary": "The value property of the DataCue interface represents the data payload of the cue. Unlike VTTCue, which carries text content, DataCue can hold any data type — such as a JavaScript object, a string, or an ArrayBuffer — making it suitable for timed metadata use cases where structured data needs to be synchronized with media playback."
5306+
},
52875307
{
52885308
"mdn_url": "/en-US/docs/Web/API/DataTransfer",
52895309
"pageType": "web-api-interface",
@@ -32012,7 +32032,7 @@
3201232032
{
3201332033
"mdn_url": "/en-US/docs/Web/API/TextTrackCue",
3201432034
"pageType": "web-api-interface",
32015-
"summary": "The TextTrackCue interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class."
32035+
"summary": "The TextTrackCue interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue and DataCue; you will work with these derived types rather than the base class."
3201632036
},
3201732037
{
3201832038
"mdn_url": "/en-US/docs/Web/API/TextTrackCue/endTime",

0 commit comments

Comments
 (0)