Skip to content

Commit c3a81ac

Browse files
Update core dependencies (#2379)
Co-authored-by: saschanaz <[email protected]>
1 parent fad5aab commit c3a81ac

File tree

6 files changed

+26
-17
lines changed

6 files changed

+26
-17
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26399,11 +26399,12 @@ interface PerformanceEventMap {
2639926399
*/
2640026400
interface Performance extends EventTarget {
2640126401
/**
26402-
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type.
26402+
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type since the page was loaded.
2640326403
*
2640426404
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)
2640526405
*/
2640626406
readonly eventCounts: EventCounts;
26407+
/** The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded. */
2640726408
readonly interactionCount: number;
2640826409
/**
2640926410
* The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26375,11 +26375,12 @@ interface PerformanceEventMap {
2637526375
*/
2637626376
interface Performance extends EventTarget {
2637726377
/**
26378-
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type.
26378+
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type since the page was loaded.
2637926379
*
2638026380
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)
2638126381
*/
2638226382
readonly eventCounts: EventCounts;
26383+
/** The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded. */
2638326384
readonly interactionCount: number;
2638426385
/**
2638526386
* The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26396,11 +26396,12 @@ interface PerformanceEventMap {
2639626396
*/
2639726397
interface Performance extends EventTarget {
2639826398
/**
26399-
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type.
26399+
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type since the page was loaded.
2640026400
*
2640126401
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)
2640226402
*/
2640326403
readonly eventCounts: EventCounts;
26404+
/** The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded. */
2640426405
readonly interactionCount: number;
2640526406
/**
2640626407
* The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26396,11 +26396,12 @@ interface PerformanceEventMap {
2639626396
*/
2639726397
interface Performance extends EventTarget {
2639826398
/**
26399-
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type.
26399+
* The read-only **`performance.eventCounts`** property is an EventCounts map containing the number of events which have been dispatched per event type since the page was loaded.
2640026400
*
2640126401
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)
2640226402
*/
2640326403
readonly eventCounts: EventCounts;
26404+
/** The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded. */
2640426405
readonly interactionCount: number;
2640526406
/**
2640626407
* The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.

inputfiles/mdn.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21537,7 +21537,7 @@
2153721537
{
2153821538
"mdn_url": "/en-US/docs/Web/API/Performance/eventCounts",
2153921539
"pageType": "web-api-instance-property",
21540-
"summary": "The read-only performance.eventCounts property is an EventCounts map containing the number of events which have been dispatched per event type."
21540+
"summary": "The read-only performance.eventCounts property is an EventCounts map containing the number of events which have been dispatched per event type since the page was loaded."
2154121541
},
2154221542
{
2154321543
"mdn_url": "/en-US/docs/Web/API/Performance/getEntries",
@@ -21554,6 +21554,11 @@
2155421554
"pageType": "web-api-instance-method",
2155521555
"summary": "The getEntriesByType() method returns an array of PerformanceEntry objects currently present in the performance timeline for a given type."
2155621556
},
21557+
{
21558+
"mdn_url": "/en-US/docs/Web/API/Performance/interactionCount",
21559+
"pageType": "web-api-instance-property",
21560+
"summary": "The read-only performance.interactionCount property represents the number of real-user interactions that have occurred on the page since it was loaded."
21561+
},
2155721562
{
2155821563
"mdn_url": "/en-US/docs/Web/API/Performance/mark",
2155921564
"pageType": "web-api-instance-method",

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)