Skip to content

Commit 68d8661

Browse files
authored
🤖 Update core dependencies
1 parent de32b7c commit 68d8661

File tree

6 files changed

+122
-88
lines changed

6 files changed

+122
-88
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface MessageEventInit<T = any> extends EventInit {
3939
}
4040

4141
interface PromiseRejectionEventInit extends EventInit {
42-
promise: Promise<any>;
42+
promise: any;
4343
reason?: any;
4444
}
4545

@@ -714,7 +714,7 @@ declare var MessagePort: {
714714
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
715715
interface PromiseRejectionEvent extends Event {
716716
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
717-
readonly promise: Promise<any>;
717+
readonly promise: any;
718718
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
719719
readonly reason: any;
720720
}

baselines/dom.generated.d.ts

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ interface ProgressEventInit extends EventInit {
11911191
}
11921192

11931193
interface PromiseRejectionEventInit extends EventInit {
1194-
promise: Promise<any>;
1194+
promise: any;
11951195
reason?: any;
11961196
}
11971197

@@ -2513,7 +2513,9 @@ declare var AnimationEvent: {
25132513
};
25142514

25152515
interface AnimationFrameProvider {
2516+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
25162517
cancelAnimationFrame(handle: number): void;
2518+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
25172519
requestAnimationFrame(callback: FrameRequestCallback): number;
25182520
}
25192521

@@ -4882,8 +4884,6 @@ interface CSSStyleDeclaration {
48824884
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
48834885
*/
48844886
webkitMaskClip: string;
4885-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite) */
4886-
webkitMaskComposite: string;
48874887
/**
48884888
* @deprecated This is a legacy alias of `maskImage`.
48894889
*
@@ -11528,6 +11528,7 @@ interface HTMLMediaElement extends HTMLElement {
1152811528
preservesPitch: boolean;
1152911529
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState) */
1153011530
readonly readyState: number;
11531+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote) */
1153111532
readonly remote: RemotePlayback;
1153211533
/**
1153311534
* Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.
@@ -12501,6 +12502,8 @@ interface HTMLSelectElement extends HTMLElement {
1250112502
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)
1250212503
*/
1250312504
setCustomValidity(error: string): void;
12505+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker) */
12506+
showPicker(): void;
1250412507
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1250512508
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1250612509
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -17747,7 +17750,7 @@ declare var ProgressEvent: {
1774717750
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
1774817751
interface PromiseRejectionEvent extends Event {
1774917752
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
17750-
readonly promise: Promise<any>;
17753+
readonly promise: any;
1775117754
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
1775217755
readonly reason: any;
1775317756
}
@@ -21266,6 +21269,7 @@ interface ServiceWorkerContainer extends EventTarget {
2126621269
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
2126721270
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
2126821271
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
21272+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
2126921273
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
2127021274
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
2127121275
readonly ready: Promise<ServiceWorkerRegistration>;
@@ -25679,6 +25683,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
2567925683
"DOMContentLoaded": Event;
2568025684
"devicemotion": DeviceMotionEvent;
2568125685
"deviceorientation": DeviceOrientationEvent;
25686+
"deviceorientationabsolute": Event;
2568225687
"gamepadconnected": GamepadEvent;
2568325688
"gamepaddisconnected": GamepadEvent;
2568425689
"orientationchange": Event;
@@ -25767,6 +25772,12 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2576725772
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2576825773
*/
2576925774
ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
25775+
/**
25776+
* Available only in secure contexts.
25777+
*
25778+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
25779+
*/
25780+
ondeviceorientationabsolute: ((this: Window, ev: Event) => any) | null;
2577025781
/**
2577125782
* @deprecated
2577225783
*
@@ -26011,7 +26022,11 @@ interface WindowEventHandlers {
2601126022
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
2601226023
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2601326024
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
26014-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
26025+
/**
26026+
* @deprecated
26027+
*
26028+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
26029+
*/
2601526030
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
2601626031
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2601726032
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -27382,6 +27397,12 @@ declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | nul
2738227397
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2738327398
*/
2738427399
declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
27400+
/**
27401+
* Available only in secure contexts.
27402+
*
27403+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
27404+
*/
27405+
declare var ondeviceorientationabsolute: ((this: Window, ev: Event) => any) | null;
2738527406
/**
2738627407
* @deprecated
2738727408
*
@@ -27565,7 +27586,9 @@ declare function toString(): string;
2756527586
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
2756627587
*/
2756727588
declare function dispatchEvent(event: Event): boolean;
27589+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
2756827590
declare function cancelAnimationFrame(handle: number): void;
27591+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
2756927592
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
2757027593
/**
2757127594
* Fires when the user aborts the download.
@@ -28035,7 +28058,11 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
2803528058
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
2803628059
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2803728060
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
28038-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
28061+
/**
28062+
* @deprecated
28063+
*
28064+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
28065+
*/
2803928066
declare var onunload: ((this: Window, ev: Event) => any) | null;
2804028067
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
2804128068
declare var localStorage: Storage;

baselines/serviceworker.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ interface ProgressEventInit extends EventInit {
446446
}
447447

448448
interface PromiseRejectionEventInit extends EventInit {
449-
promise: Promise<any>;
449+
promise: any;
450450
reason?: any;
451451
}
452452

@@ -4360,7 +4360,7 @@ declare var ProgressEvent: {
43604360
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
43614361
interface PromiseRejectionEvent extends Event {
43624362
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4363-
readonly promise: Promise<any>;
4363+
readonly promise: any;
43644364
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
43654365
readonly reason: any;
43664366
}
@@ -4842,6 +4842,7 @@ interface ServiceWorkerContainer extends EventTarget {
48424842
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
48434843
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
48444844
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
4845+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
48454846
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
48464847
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
48474848
readonly ready: Promise<ServiceWorkerRegistration>;

baselines/sharedworker.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ interface ProgressEventInit extends EventInit {
416416
}
417417

418418
interface PromiseRejectionEventInit extends EventInit {
419-
promise: Promise<any>;
419+
promise: any;
420420
reason?: any;
421421
}
422422

@@ -4232,7 +4232,7 @@ declare var ProgressEvent: {
42324232
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
42334233
interface PromiseRejectionEvent extends Event {
42344234
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4235-
readonly promise: Promise<any>;
4235+
readonly promise: any;
42364236
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
42374237
readonly reason: any;
42384238
}
@@ -4676,6 +4676,7 @@ interface ServiceWorkerContainer extends EventTarget {
46764676
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
46774677
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
46784678
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
4679+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
46794680
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
46804681
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
46814682
readonly ready: Promise<ServiceWorkerRegistration>;

baselines/webworker.generated.d.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ interface ProgressEventInit extends EventInit {
470470
}
471471

472472
interface PromiseRejectionEventInit extends EventInit {
473-
promise: Promise<any>;
473+
promise: any;
474474
reason?: any;
475475
}
476476

@@ -971,7 +971,9 @@ interface AbstractWorker {
971971
}
972972

973973
interface AnimationFrameProvider {
974+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
974975
cancelAnimationFrame(handle: number): void;
976+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
975977
requestAnimationFrame(callback: FrameRequestCallback): number;
976978
}
977979

@@ -4620,7 +4622,7 @@ declare var ProgressEvent: {
46204622
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
46214623
interface PromiseRejectionEvent extends Event {
46224624
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4623-
readonly promise: Promise<any>;
4625+
readonly promise: any;
46244626
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
46254627
readonly reason: any;
46264628
}
@@ -4766,7 +4768,7 @@ declare var RTCEncodedVideoFrame: {
47664768
};
47674769

47684770
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer) */
4769-
interface RTCRtpScriptTransformer {
4771+
interface RTCRtpScriptTransformer extends EventTarget {
47704772
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/options) */
47714773
readonly options: any;
47724774
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/readable) */
@@ -5164,6 +5166,7 @@ interface ServiceWorkerContainer extends EventTarget {
51645166
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
51655167
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
51665168
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
5169+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
51675170
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
51685171
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
51695172
readonly ready: Promise<ServiceWorkerRegistration>;
@@ -9255,7 +9258,9 @@ declare function setInterval(handler: TimerHandler, timeout?: number, ...argumen
92559258
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
92569259
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/structuredClone) */
92579260
declare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
9261+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
92589262
declare function cancelAnimationFrame(handle: number): void;
9263+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
92599264
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
92609265
declare function addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
92619266
declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

0 commit comments

Comments
 (0)