Skip to content

Commit ccc5798

Browse files
🤖 Update core dependencies
1 parent a193ecb commit ccc5798

25 files changed

Lines changed: 1242 additions & 751 deletions

baselines/audioworklet.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,25 +1569,25 @@ declare namespace WebAssembly {
15691569
};
15701570

15711571
/**
1572-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1572+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15731573
*
15741574
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15751575
*/
15761576
interface Exception {
15771577
/**
1578-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1578+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15791579
*
15801580
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15811581
*/
15821582
readonly stack: string | undefined;
15831583
/**
1584-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1584+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15851585
*
15861586
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15871587
*/
15881588
getArg(exceptionTag: Tag, index: number): any;
15891589
/**
1590-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1590+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15911591
*
15921592
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15931593
*/
@@ -1755,7 +1755,7 @@ declare namespace WebAssembly {
17551755
};
17561756

17571757
/**
1758-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
1758+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
17591759
*
17601760
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
17611761
*/

baselines/dom.generated.d.ts

Lines changed: 150 additions & 119 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ interface GPUPipelineErrorInit {
450450

451451
interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
452452
bindGroupLayouts: (GPUBindGroupLayout | null)[];
453+
immediateSize?: GPUSize32;
453454
}
454455

455456
interface GPUPrimitiveState {
@@ -6955,7 +6956,7 @@ interface NotificationEventMap {
69556956
*/
69566957
interface Notification extends EventTarget {
69576958
/**
6958-
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6959+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
69596960
*
69606961
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
69616962
*/
@@ -7038,7 +7039,7 @@ declare var Notification: {
70387039
prototype: Notification;
70397040
new(title: string, options?: NotificationOptions): Notification;
70407041
/**
7041-
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.
7042+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
70427043
*
70437044
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
70447045
*/
@@ -8459,7 +8460,7 @@ interface Response extends Body {
84598460
*/
84608461
readonly redirected: boolean;
84618462
/**
8462-
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
8463+
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
84638464
*
84648465
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
84658466
*/
@@ -12888,25 +12889,25 @@ declare namespace WebAssembly {
1288812889
};
1288912890

1289012891
/**
12891-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12892+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1289212893
*
1289312894
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1289412895
*/
1289512896
interface Exception {
1289612897
/**
12897-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12898+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1289812899
*
1289912900
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1290012901
*/
1290112902
readonly stack: string | undefined;
1290212903
/**
12903-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
12904+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1290412905
*
1290512906
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1290612907
*/
1290712908
getArg(exceptionTag: Tag, index: number): any;
1290812909
/**
12909-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12910+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1291012911
*
1291112912
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1291212913
*/
@@ -13074,7 +13075,7 @@ declare namespace WebAssembly {
1307413075
};
1307513076

1307613077
/**
13077-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
13078+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1307813079
*
1307913080
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1308013081
*/
@@ -13626,7 +13627,7 @@ type GPUCompilationMessageType = "error" | "info" | "warning";
1362613627
type GPUCullMode = "back" | "front" | "none";
1362713628
type GPUDeviceLostReason = "destroyed" | "unknown";
1362813629
type GPUErrorFilter = "internal" | "out-of-memory" | "validation";
13629-
type GPUFeatureName = "bgra8unorm-storage" | "clip-distances" | "core-features-and-limits" | "depth-clip-control" | "depth32float-stencil8" | "dual-source-blending" | "float32-blendable" | "float32-filterable" | "indirect-first-instance" | "primitive-index" | "rg11b10ufloat-renderable" | "shader-f16" | "subgroups" | "texture-compression-astc" | "texture-compression-astc-sliced-3d" | "texture-compression-bc" | "texture-compression-bc-sliced-3d" | "texture-compression-etc2" | "texture-formats-tier1" | "timestamp-query";
13630+
type GPUFeatureName = "bgra8unorm-storage" | "clip-distances" | "core-features-and-limits" | "depth-clip-control" | "depth32float-stencil8" | "dual-source-blending" | "float32-blendable" | "float32-filterable" | "indirect-first-instance" | "primitive-index" | "rg11b10ufloat-renderable" | "shader-f16" | "subgroup-size-control" | "subgroups" | "texture-compression-astc" | "texture-compression-astc-sliced-3d" | "texture-compression-bc" | "texture-compression-bc-sliced-3d" | "texture-compression-etc2" | "texture-formats-tier1" | "timestamp-query";
1363013631
type GPUFilterMode = "linear" | "nearest";
1363113632
type GPUFrontFace = "ccw" | "cw";
1363213633
type GPUIndexFormat = "uint16" | "uint32";

baselines/sharedworker.generated.d.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ interface GPUPipelineErrorInit {
394394

395395
interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
396396
bindGroupLayouts: (GPUBindGroupLayout | null)[];
397+
immediateSize?: GPUSize32;
397398
}
398399

399400
interface GPUPrimitiveState {
@@ -6638,7 +6639,7 @@ interface NotificationEventMap {
66386639
*/
66396640
interface Notification extends EventTarget {
66406641
/**
6641-
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6642+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
66426643
*
66436644
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
66446645
*/
@@ -6721,7 +6722,7 @@ declare var Notification: {
67216722
prototype: Notification;
67226723
new(title: string, options?: NotificationOptions): Notification;
67236724
/**
6724-
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.
6725+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
67256726
*
67266727
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
67276728
*/
@@ -8042,7 +8043,7 @@ interface Response extends Body {
80428043
*/
80438044
readonly redirected: boolean;
80448045
/**
8045-
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
8046+
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
80468047
*
80478048
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
80488049
*/
@@ -12614,25 +12615,25 @@ declare namespace WebAssembly {
1261412615
};
1261512616

1261612617
/**
12617-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12618+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1261812619
*
1261912620
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1262012621
*/
1262112622
interface Exception {
1262212623
/**
12623-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12624+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1262412625
*
1262512626
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1262612627
*/
1262712628
readonly stack: string | undefined;
1262812629
/**
12629-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
12630+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1263012631
*
1263112632
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1263212633
*/
1263312634
getArg(exceptionTag: Tag, index: number): any;
1263412635
/**
12635-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12636+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1263612637
*
1263712638
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1263812639
*/
@@ -12800,7 +12801,7 @@ declare namespace WebAssembly {
1280012801
};
1280112802

1280212803
/**
12803-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
12804+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1280412805
*
1280512806
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1280612807
*/
@@ -13311,7 +13312,7 @@ type GPUCompilationMessageType = "error" | "info" | "warning";
1331113312
type GPUCullMode = "back" | "front" | "none";
1331213313
type GPUDeviceLostReason = "destroyed" | "unknown";
1331313314
type GPUErrorFilter = "internal" | "out-of-memory" | "validation";
13314-
type GPUFeatureName = "bgra8unorm-storage" | "clip-distances" | "core-features-and-limits" | "depth-clip-control" | "depth32float-stencil8" | "dual-source-blending" | "float32-blendable" | "float32-filterable" | "indirect-first-instance" | "primitive-index" | "rg11b10ufloat-renderable" | "shader-f16" | "subgroups" | "texture-compression-astc" | "texture-compression-astc-sliced-3d" | "texture-compression-bc" | "texture-compression-bc-sliced-3d" | "texture-compression-etc2" | "texture-formats-tier1" | "timestamp-query";
13315+
type GPUFeatureName = "bgra8unorm-storage" | "clip-distances" | "core-features-and-limits" | "depth-clip-control" | "depth32float-stencil8" | "dual-source-blending" | "float32-blendable" | "float32-filterable" | "indirect-first-instance" | "primitive-index" | "rg11b10ufloat-renderable" | "shader-f16" | "subgroup-size-control" | "subgroups" | "texture-compression-astc" | "texture-compression-astc-sliced-3d" | "texture-compression-bc" | "texture-compression-bc-sliced-3d" | "texture-compression-etc2" | "texture-formats-tier1" | "timestamp-query";
1331513316
type GPUFilterMode = "linear" | "nearest";
1331613317
type GPUFrontFace = "ccw" | "cw";
1331713318
type GPUIndexFormat = "uint16" | "uint32";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,25 +1566,25 @@ declare namespace WebAssembly {
15661566
};
15671567

15681568
/**
1569-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1569+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15701570
*
15711571
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15721572
*/
15731573
interface Exception {
15741574
/**
1575-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1575+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15761576
*
15771577
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15781578
*/
15791579
readonly stack: string | undefined;
15801580
/**
1581-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1581+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15821582
*
15831583
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15841584
*/
15851585
getArg(exceptionTag: Tag, index: number): any;
15861586
/**
1587-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1587+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15881588
*
15891589
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15901590
*/
@@ -1752,7 +1752,7 @@ declare namespace WebAssembly {
17521752
};
17531753

17541754
/**
1755-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
1755+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
17561756
*
17571757
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
17581758
*/

0 commit comments

Comments
 (0)