Skip to content

Commit 4b414e5

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 263b4b5 commit 4b414e5

18 files changed

+116
-24
lines changed

baselines/dom.generated.d.ts

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23815,6 +23815,13 @@ declare var NavigateEvent: {
2381523815
new(type: string, eventInitDict: NavigateEventInit): NavigateEvent;
2381623816
};
2381723817

23818+
interface NavigationEventMap {
23819+
"currententrychange": NavigationCurrentEntryChangeEvent;
23820+
"navigate": NavigateEvent;
23821+
"navigateerror": ErrorEvent;
23822+
"navigatesuccess": Event;
23823+
}
23824+
2381823825
/**
2381923826
* The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen.
2382023827
*
@@ -23845,6 +23852,14 @@ interface Navigation extends EventTarget {
2384523852
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry)
2384623853
*/
2384723854
readonly currentEntry: NavigationHistoryEntry | null;
23855+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */
23856+
oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null;
23857+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */
23858+
onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null;
23859+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */
23860+
onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null;
23861+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */
23862+
onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null;
2384823863
/**
2384923864
* The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it.
2385023865
*
@@ -23893,6 +23908,10 @@ interface Navigation extends EventTarget {
2389323908
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry)
2389423909
*/
2389523910
updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void;
23911+
addEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
23912+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23913+
removeEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
23914+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2389623915
}
2389723916

2389823917
declare var Navigation: {
@@ -26242,7 +26261,11 @@ declare var PerformanceObserverEntryList: {
2624226261
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
2624326262
*/
2624426263
interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26245-
/** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26264+
/**
26265+
* The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object.
26266+
*
26267+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON)
26268+
*/
2624626269
toJSON(): any;
2624726270
}
2624826271

@@ -33441,7 +33464,7 @@ interface ServiceWorkerContainer extends EventTarget {
3344133464
*/
3344233465
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
3344333466
/**
33444-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
33467+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
3344533468
*
3344633469
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
3344733470
*/

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7058,7 +7058,7 @@ interface ServiceWorkerContainer extends EventTarget {
70587058
*/
70597059
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
70607060
/**
7061-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
7061+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
70627062
*
70637063
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
70647064
*/

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6635,7 +6635,7 @@ interface ServiceWorkerContainer extends EventTarget {
66356635
*/
66366636
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
66376637
/**
6638-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
6638+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
66396639
*
66406640
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
66416641
*/

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

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23791,6 +23791,13 @@ declare var NavigateEvent: {
2379123791
new(type: string, eventInitDict: NavigateEventInit): NavigateEvent;
2379223792
};
2379323793

23794+
interface NavigationEventMap {
23795+
"currententrychange": NavigationCurrentEntryChangeEvent;
23796+
"navigate": NavigateEvent;
23797+
"navigateerror": ErrorEvent;
23798+
"navigatesuccess": Event;
23799+
}
23800+
2379423801
/**
2379523802
* The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen.
2379623803
*
@@ -23821,6 +23828,14 @@ interface Navigation extends EventTarget {
2382123828
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry)
2382223829
*/
2382323830
readonly currentEntry: NavigationHistoryEntry | null;
23831+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */
23832+
oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null;
23833+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */
23834+
onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null;
23835+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */
23836+
onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null;
23837+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */
23838+
onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null;
2382423839
/**
2382523840
* The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it.
2382623841
*
@@ -23869,6 +23884,10 @@ interface Navigation extends EventTarget {
2386923884
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry)
2387023885
*/
2387123886
updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void;
23887+
addEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
23888+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23889+
removeEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
23890+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2387223891
}
2387323892

2387423893
declare var Navigation: {
@@ -26218,7 +26237,11 @@ declare var PerformanceObserverEntryList: {
2621826237
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
2621926238
*/
2622026239
interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26221-
/** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26240+
/**
26241+
* The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object.
26242+
*
26243+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON)
26244+
*/
2622226245
toJSON(): any;
2622326246
}
2622426247

@@ -33416,7 +33439,7 @@ interface ServiceWorkerContainer extends EventTarget {
3341633439
*/
3341733440
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
3341833441
/**
33419-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
33442+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
3342033443
*
3342133444
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
3342233445
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7055,7 +7055,7 @@ interface ServiceWorkerContainer extends EventTarget {
70557055
*/
70567056
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
70577057
/**
7058-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
7058+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
70597059
*
70607060
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
70617061
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6632,7 +6632,7 @@ interface ServiceWorkerContainer extends EventTarget {
66326632
*/
66336633
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
66346634
/**
6635-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
6635+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
66366636
*
66376637
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
66386638
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8177,7 +8177,7 @@ interface ServiceWorkerContainer extends EventTarget {
81778177
*/
81788178
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
81798179
/**
8180-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
8180+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
81818181
*
81828182
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
81838183
*/

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

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23812,6 +23812,13 @@ declare var NavigateEvent: {
2381223812
new(type: string, eventInitDict: NavigateEventInit): NavigateEvent;
2381323813
};
2381423814

23815+
interface NavigationEventMap {
23816+
"currententrychange": NavigationCurrentEntryChangeEvent;
23817+
"navigate": NavigateEvent;
23818+
"navigateerror": ErrorEvent;
23819+
"navigatesuccess": Event;
23820+
}
23821+
2381523822
/**
2381623823
* The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen.
2381723824
*
@@ -23842,6 +23849,14 @@ interface Navigation extends EventTarget {
2384223849
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry)
2384323850
*/
2384423851
readonly currentEntry: NavigationHistoryEntry | null;
23852+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */
23853+
oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null;
23854+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */
23855+
onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null;
23856+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */
23857+
onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null;
23858+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */
23859+
onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null;
2384523860
/**
2384623861
* The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it.
2384723862
*
@@ -23890,6 +23905,10 @@ interface Navigation extends EventTarget {
2389023905
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry)
2389123906
*/
2389223907
updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void;
23908+
addEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
23909+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23910+
removeEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
23911+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2389323912
}
2389423913

2389523914
declare var Navigation: {
@@ -26239,7 +26258,11 @@ declare var PerformanceObserverEntryList: {
2623926258
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
2624026259
*/
2624126260
interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26242-
/** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26261+
/**
26262+
* The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object.
26263+
*
26264+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON)
26265+
*/
2624326266
toJSON(): any;
2624426267
}
2624526268

@@ -33438,7 +33461,7 @@ interface ServiceWorkerContainer extends EventTarget {
3343833461
*/
3343933462
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
3344033463
/**
33441-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
33464+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
3344233465
*
3344333466
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
3344433467
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7055,7 +7055,7 @@ interface ServiceWorkerContainer extends EventTarget {
70557055
*/
70567056
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
70577057
/**
7058-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
7058+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
70597059
*
70607060
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
70617061
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6632,7 +6632,7 @@ interface ServiceWorkerContainer extends EventTarget {
66326632
*/
66336633
getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;
66346634
/**
6635-
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker.
6635+
* The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
66366636
*
66376637
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)
66386638
*/

0 commit comments

Comments
 (0)