Skip to content

Commit 0ca98b5

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 3c4604a commit 0ca98b5

11 files changed

+172
-19
lines changed

baselines/dom.generated.d.ts

+19
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,10 @@ interface GetAnimationsOptions {
713713
subtree?: boolean;
714714
}
715715

716+
interface GetComposedRangesOptions {
717+
shadowRoots?: ShadowRoot[];
718+
}
719+
716720
interface GetHTMLOptions {
717721
serializableShadowRoots?: boolean;
718722
shadowRoots?: ShadowRoot[];
@@ -2517,6 +2521,7 @@ interface ANGLE_instanced_arrays {
25172521
}
25182522

25192523
interface ARIAMixin {
2524+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaActiveDescendantElement) */
25202525
ariaActiveDescendantElement: Element | null;
25212526
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
25222527
ariaAtomic: string | null;
@@ -2538,18 +2543,23 @@ interface ARIAMixin {
25382543
ariaColIndexText: string | null;
25392544
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
25402545
ariaColSpan: string | null;
2546+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaControlsElements) */
25412547
ariaControlsElements: ReadonlyArray<Element> | null;
25422548
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
25432549
ariaCurrent: string | null;
2550+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements) */
25442551
ariaDescribedByElements: ReadonlyArray<Element> | null;
25452552
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
25462553
ariaDescription: string | null;
2554+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDetailsElements) */
25472555
ariaDetailsElements: ReadonlyArray<Element> | null;
25482556
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
25492557
ariaDisabled: string | null;
2558+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaErrorMessageElements) */
25502559
ariaErrorMessageElements: ReadonlyArray<Element> | null;
25512560
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
25522561
ariaExpanded: string | null;
2562+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaFlowToElements) */
25532563
ariaFlowToElements: ReadonlyArray<Element> | null;
25542564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
25552565
ariaHasPopup: string | null;
@@ -2561,6 +2571,7 @@ interface ARIAMixin {
25612571
ariaKeyShortcuts: string | null;
25622572
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
25632573
ariaLabel: string | null;
2574+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements) */
25642575
ariaLabelledByElements: ReadonlyArray<Element> | null;
25652576
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
25662577
ariaLevel: string | null;
@@ -2574,6 +2585,7 @@ interface ARIAMixin {
25742585
ariaMultiSelectable: string | null;
25752586
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
25762587
ariaOrientation: string | null;
2588+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOwnsElements) */
25772589
ariaOwnsElements: ReadonlyArray<Element> | null;
25782590
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
25792591
ariaPlaceholder: string | null;
@@ -10093,6 +10105,7 @@ interface GlobalEventHandlersEventMap {
1009310105
"animationstart": AnimationEvent;
1009410106
"auxclick": PointerEvent;
1009510107
"beforeinput": InputEvent;
10108+
"beforematch": Event;
1009610109
"beforetoggle": ToggleEvent;
1009710110
"blur": FocusEvent;
1009810111
"cancel": Event;
@@ -10211,6 +10224,8 @@ interface GlobalEventHandlers {
1021110224
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1021210225
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
1021310226
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
10227+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */
10228+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1021410229
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
1021510230
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1021610231
/**
@@ -23488,6 +23503,8 @@ interface Selection {
2348823503
empty(): void;
2348923504
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/extend) */
2349023505
extend(node: Node, offset?: number): void;
23506+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getComposedRanges) */
23507+
getComposedRanges(options?: GetComposedRangesOptions): StaticRange[];
2349123508
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getRangeAt) */
2349223509
getRangeAt(index: number): Range;
2349323510
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/modify) */
@@ -30164,6 +30181,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
3016430181
declare var onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
3016530182
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
3016630183
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
30184+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */
30185+
declare var onbeforematch: ((this: Window, ev: Event) => any) | null;
3016730186
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
3016830187
declare var onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
3016930188
/**

baselines/serviceworker.generated.d.ts

+19-3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,11 @@ interface PushEventInit extends ExtendableEventInit {
481481
data?: PushMessageDataInit;
482482
}
483483

484+
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
485+
newSubscription?: PushSubscription;
486+
oldSubscription?: PushSubscription;
487+
}
488+
484489
interface PushSubscriptionJSON {
485490
endpoint?: string;
486491
expirationTime?: EpochTimeStamp | null;
@@ -4888,6 +4893,17 @@ declare var PushSubscription: {
48884893
new(): PushSubscription;
48894894
};
48904895

4896+
/** Available only in secure contexts. */
4897+
interface PushSubscriptionChangeEvent extends ExtendableEvent {
4898+
readonly newSubscription: PushSubscription | null;
4899+
readonly oldSubscription: PushSubscription | null;
4900+
}
4901+
4902+
declare var PushSubscriptionChangeEvent: {
4903+
prototype: PushSubscriptionChangeEvent;
4904+
new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;
4905+
};
4906+
48914907
/**
48924908
* The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.
48934909
* Available only in secure contexts.
@@ -5340,7 +5356,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
53405356
"notificationclick": NotificationEvent;
53415357
"notificationclose": NotificationEvent;
53425358
"push": PushEvent;
5343-
"pushsubscriptionchange": Event;
5359+
"pushsubscriptionchange": PushSubscriptionChangeEvent;
53445360
}
53455361

53465362
/**
@@ -5371,7 +5387,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
53715387
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */
53725388
onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;
53735389
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */
5374-
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
5390+
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
53755391
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
53765392
readonly registration: ServiceWorkerRegistration;
53775393
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
@@ -9015,7 +9031,7 @@ declare var onnotificationclose: ((this: ServiceWorkerGlobalScope, ev: Notificat
90159031
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */
90169032
declare var onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;
90179033
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */
9018-
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
9034+
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
90199035
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
90209036
declare var registration: ServiceWorkerRegistration;
90219037
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */

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

+19
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,10 @@ interface GetAnimationsOptions {
713713
subtree?: boolean;
714714
}
715715

716+
interface GetComposedRangesOptions {
717+
shadowRoots?: ShadowRoot[];
718+
}
719+
716720
interface GetHTMLOptions {
717721
serializableShadowRoots?: boolean;
718722
shadowRoots?: ShadowRoot[];
@@ -2517,6 +2521,7 @@ interface ANGLE_instanced_arrays {
25172521
}
25182522

25192523
interface ARIAMixin {
2524+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaActiveDescendantElement) */
25202525
ariaActiveDescendantElement: Element | null;
25212526
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
25222527
ariaAtomic: string | null;
@@ -2538,18 +2543,23 @@ interface ARIAMixin {
25382543
ariaColIndexText: string | null;
25392544
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
25402545
ariaColSpan: string | null;
2546+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaControlsElements) */
25412547
ariaControlsElements: ReadonlyArray<Element> | null;
25422548
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
25432549
ariaCurrent: string | null;
2550+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements) */
25442551
ariaDescribedByElements: ReadonlyArray<Element> | null;
25452552
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
25462553
ariaDescription: string | null;
2554+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDetailsElements) */
25472555
ariaDetailsElements: ReadonlyArray<Element> | null;
25482556
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
25492557
ariaDisabled: string | null;
2558+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaErrorMessageElements) */
25502559
ariaErrorMessageElements: ReadonlyArray<Element> | null;
25512560
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
25522561
ariaExpanded: string | null;
2562+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaFlowToElements) */
25532563
ariaFlowToElements: ReadonlyArray<Element> | null;
25542564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
25552565
ariaHasPopup: string | null;
@@ -2561,6 +2571,7 @@ interface ARIAMixin {
25612571
ariaKeyShortcuts: string | null;
25622572
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
25632573
ariaLabel: string | null;
2574+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements) */
25642575
ariaLabelledByElements: ReadonlyArray<Element> | null;
25652576
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
25662577
ariaLevel: string | null;
@@ -2574,6 +2585,7 @@ interface ARIAMixin {
25742585
ariaMultiSelectable: string | null;
25752586
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
25762587
ariaOrientation: string | null;
2588+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOwnsElements) */
25772589
ariaOwnsElements: ReadonlyArray<Element> | null;
25782590
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
25792591
ariaPlaceholder: string | null;
@@ -10083,6 +10095,7 @@ interface GlobalEventHandlersEventMap {
1008310095
"animationstart": AnimationEvent;
1008410096
"auxclick": PointerEvent;
1008510097
"beforeinput": InputEvent;
10098+
"beforematch": Event;
1008610099
"beforetoggle": ToggleEvent;
1008710100
"blur": FocusEvent;
1008810101
"cancel": Event;
@@ -10201,6 +10214,8 @@ interface GlobalEventHandlers {
1020110214
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1020210215
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
1020310216
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
10217+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */
10218+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1020410219
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
1020510220
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1020610221
/**
@@ -23467,6 +23482,8 @@ interface Selection {
2346723482
empty(): void;
2346823483
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/extend) */
2346923484
extend(node: Node, offset?: number): void;
23485+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getComposedRanges) */
23486+
getComposedRanges(options?: GetComposedRangesOptions): StaticRange[];
2347023487
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getRangeAt) */
2347123488
getRangeAt(index: number): Range;
2347223489
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/modify) */
@@ -30142,6 +30159,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
3014230159
declare var onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
3014330160
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
3014430161
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
30162+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */
30163+
declare var onbeforematch: ((this: Window, ev: Event) => any) | null;
3014530164
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
3014630165
declare var onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
3014730166
/**

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

+19-3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,11 @@ interface PushEventInit extends ExtendableEventInit {
481481
data?: PushMessageDataInit;
482482
}
483483

484+
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
485+
newSubscription?: PushSubscription;
486+
oldSubscription?: PushSubscription;
487+
}
488+
484489
interface PushSubscriptionJSON {
485490
endpoint?: string;
486491
expirationTime?: EpochTimeStamp | null;
@@ -4888,6 +4893,17 @@ declare var PushSubscription: {
48884893
new(): PushSubscription;
48894894
};
48904895

4896+
/** Available only in secure contexts. */
4897+
interface PushSubscriptionChangeEvent extends ExtendableEvent {
4898+
readonly newSubscription: PushSubscription | null;
4899+
readonly oldSubscription: PushSubscription | null;
4900+
}
4901+
4902+
declare var PushSubscriptionChangeEvent: {
4903+
prototype: PushSubscriptionChangeEvent;
4904+
new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;
4905+
};
4906+
48914907
/**
48924908
* The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.
48934909
* Available only in secure contexts.
@@ -5340,7 +5356,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
53405356
"notificationclick": NotificationEvent;
53415357
"notificationclose": NotificationEvent;
53425358
"push": PushEvent;
5343-
"pushsubscriptionchange": Event;
5359+
"pushsubscriptionchange": PushSubscriptionChangeEvent;
53445360
}
53455361

53465362
/**
@@ -5371,7 +5387,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
53715387
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */
53725388
onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;
53735389
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */
5374-
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
5390+
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
53755391
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
53765392
readonly registration: ServiceWorkerRegistration;
53775393
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
@@ -9015,7 +9031,7 @@ declare var onnotificationclose: ((this: ServiceWorkerGlobalScope, ev: Notificat
90159031
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */
90169032
declare var onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;
90179033
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */
9018-
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
9034+
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
90199035
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
90209036
declare var registration: ServiceWorkerRegistration;
90219037
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */

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

+18-2
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,11 @@ interface PushEventInit extends ExtendableEventInit {
603603
data?: PushMessageDataInit;
604604
}
605605

606+
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
607+
newSubscription?: PushSubscription;
608+
oldSubscription?: PushSubscription;
609+
}
610+
606611
interface PushSubscriptionJSON {
607612
endpoint?: string;
608613
expirationTime?: EpochTimeStamp | null;
@@ -5494,6 +5499,17 @@ declare var PushSubscription: {
54945499
new(): PushSubscription;
54955500
};
54965501

5502+
/** Available only in secure contexts. */
5503+
interface PushSubscriptionChangeEvent extends ExtendableEvent {
5504+
readonly newSubscription: PushSubscription | null;
5505+
readonly oldSubscription: PushSubscription | null;
5506+
}
5507+
5508+
declare var PushSubscriptionChangeEvent: {
5509+
prototype: PushSubscriptionChangeEvent;
5510+
new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;
5511+
};
5512+
54975513
/**
54985514
* The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.
54995515
* Available only in secure contexts.
@@ -6091,7 +6107,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
60916107
"notificationclick": NotificationEvent;
60926108
"notificationclose": NotificationEvent;
60936109
"push": PushEvent;
6094-
"pushsubscriptionchange": Event;
6110+
"pushsubscriptionchange": PushSubscriptionChangeEvent;
60956111
}
60966112

60976113
/**
@@ -6122,7 +6138,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
61226138
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */
61236139
onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;
61246140
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */
6125-
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
6141+
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
61266142
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
61276143
readonly registration: ServiceWorkerRegistration;
61286144
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */

0 commit comments

Comments
 (0)