Skip to content

Commit 3188387

Browse files
authored
🤖 Update core dependencies
1 parent bdf9e19 commit 3188387

5 files changed

+61
-55
lines changed

baselines/dom.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ interface DeviceOrientationEventInit extends EventInit {
355355

356356
interface DisplayMediaStreamConstraints {
357357
audio?: boolean | MediaTrackConstraints;
358+
systemAudio?: SystemAudioPreferenceEnum;
358359
video?: boolean | MediaTrackConstraints;
359360
}
360361

@@ -11497,6 +11498,7 @@ declare var Response: {
1149711498
prototype: Response;
1149811499
new(body?: BodyInit | null, init?: ResponseInit): Response;
1149911500
error(): Response;
11501+
json(data: any, init?: ResponseInit): Response;
1150011502
redirect(url: string | URL, status?: number): Response;
1150111503
};
1150211504

@@ -18195,6 +18197,7 @@ type ServiceWorkerUpdateViaCache = "all" | "imports" | "none";
1819518197
type ShadowRootMode = "closed" | "open";
1819618198
type SlotAssignmentMode = "manual" | "named";
1819718199
type SpeechSynthesisErrorCode = "audio-busy" | "audio-hardware" | "canceled" | "interrupted" | "invalid-argument" | "language-unavailable" | "network" | "not-allowed" | "synthesis-failed" | "synthesis-unavailable" | "text-too-long" | "voice-unavailable";
18200+
type SystemAudioPreferenceEnum = "exclude" | "include";
1819818201
type TextTrackKind = "captions" | "chapters" | "descriptions" | "metadata" | "subtitles";
1819918202
type TextTrackMode = "disabled" | "hidden" | "showing";
1820018203
type TouchType = "direct" | "stylus";

baselines/serviceworker.generated.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2670,6 +2670,7 @@ declare var Response: {
26702670
prototype: Response;
26712671
new(body?: BodyInit | null, init?: ResponseInit): Response;
26722672
error(): Response;
2673+
json(data: any, init?: ResponseInit): Response;
26732674
redirect(url: string | URL, status?: number): Response;
26742675
};
26752676

baselines/sharedworker.generated.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2549,6 +2549,7 @@ declare var Response: {
25492549
prototype: Response;
25502550
new(body?: BodyInit | null, init?: ResponseInit): Response;
25512551
error(): Response;
2552+
json(data: any, init?: ResponseInit): Response;
25522553
redirect(url: string | URL, status?: number): Response;
25532554
};
25542555

baselines/webworker.generated.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2768,6 +2768,7 @@ declare var Response: {
27682768
prototype: Response;
27692769
new(body?: BodyInit | null, init?: ResponseInit): Response;
27702770
error(): Response;
2771+
json(data: any, init?: ResponseInit): Response;
27712772
redirect(url: string | URL, status?: number): Response;
27722773
};
27732774

package-lock.json

+55-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)