Skip to content

Commit e99d1ff

Browse files
🤖 Update core dependencies
1 parent aed8de1 commit e99d1ff

25 files changed

Lines changed: 1277 additions & 676 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: 140 additions & 96 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6416,7 +6416,7 @@ interface IDBRequestEventMap {
64166416
}
64176417

64186418
/**
6419-
* The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes. Each reading and writing operation on a database is done using a request.
6419+
* The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.
64206420
*
64216421
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)
64226422
*/
@@ -6988,7 +6988,7 @@ interface NotificationEventMap {
69886988
*/
69896989
interface Notification extends EventTarget {
69906990
/**
6991-
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6991+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
69926992
*
69936993
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
69946994
*/
@@ -7071,7 +7071,7 @@ declare var Notification: {
70717071
prototype: Notification;
70727072
new(title: string, options?: NotificationOptions): Notification;
70737073
/**
7074-
* 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.
7074+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
70757075
*
70767076
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
70777077
*/
@@ -8493,7 +8493,7 @@ interface Response extends Body {
84938493
*/
84948494
readonly redirected: boolean;
84958495
/**
8496-
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
8496+
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
84978497
*
84988498
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
84998499
*/
@@ -12922,25 +12922,25 @@ declare namespace WebAssembly {
1292212922
};
1292312923

1292412924
/**
12925-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12925+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1292612926
*
1292712927
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1292812928
*/
1292912929
interface Exception {
1293012930
/**
12931-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12931+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1293212932
*
1293312933
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1293412934
*/
1293512935
readonly stack: string | undefined;
1293612936
/**
12937-
* 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.
12937+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1293812938
*
1293912939
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1294012940
*/
1294112941
getArg(exceptionTag: Tag, index: number): any;
1294212942
/**
12943-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12943+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1294412944
*
1294512945
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1294612946
*/
@@ -13108,7 +13108,7 @@ declare namespace WebAssembly {
1310813108
};
1310913109

1311013110
/**
13111-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
13111+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1311213112
*
1311313113
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1311413114
*/
@@ -13660,7 +13660,7 @@ type GPUCompilationMessageType = "error" | "info" | "warning";
1366013660
type GPUCullMode = "back" | "front" | "none";
1366113661
type GPUDeviceLostReason = "destroyed" | "unknown";
1366213662
type GPUErrorFilter = "internal" | "out-of-memory" | "validation";
13663-
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";
13663+
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";
1366413664
type GPUFilterMode = "linear" | "nearest";
1366513665
type GPUFrontFace = "ccw" | "cw";
1366613666
type GPUIndexFormat = "uint16" | "uint32";

baselines/sharedworker.generated.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6099,7 +6099,7 @@ interface IDBRequestEventMap {
60996099
}
61006100

61016101
/**
6102-
* The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes. Each reading and writing operation on a database is done using a request.
6102+
* The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.
61036103
*
61046104
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)
61056105
*/
@@ -6671,7 +6671,7 @@ interface NotificationEventMap {
66716671
*/
66726672
interface Notification extends EventTarget {
66736673
/**
6674-
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6674+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
66756675
*
66766676
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
66776677
*/
@@ -6754,7 +6754,7 @@ declare var Notification: {
67546754
prototype: Notification;
67556755
new(title: string, options?: NotificationOptions): Notification;
67566756
/**
6757-
* 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.
6757+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
67586758
*
67596759
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
67606760
*/
@@ -8076,7 +8076,7 @@ interface Response extends Body {
80768076
*/
80778077
readonly redirected: boolean;
80788078
/**
8079-
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
8079+
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
80808080
*
80818081
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
80828082
*/
@@ -12648,25 +12648,25 @@ declare namespace WebAssembly {
1264812648
};
1264912649

1265012650
/**
12651-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12651+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1265212652
*
1265312653
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1265412654
*/
1265512655
interface Exception {
1265612656
/**
12657-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12657+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1265812658
*
1265912659
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1266012660
*/
1266112661
readonly stack: string | undefined;
1266212662
/**
12663-
* 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.
12663+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1266412664
*
1266512665
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1266612666
*/
1266712667
getArg(exceptionTag: Tag, index: number): any;
1266812668
/**
12669-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12669+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1267012670
*
1267112671
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1267212672
*/
@@ -12834,7 +12834,7 @@ declare namespace WebAssembly {
1283412834
};
1283512835

1283612836
/**
12837-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
12837+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1283812838
*
1283912839
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1284012840
*/
@@ -13345,7 +13345,7 @@ type GPUCompilationMessageType = "error" | "info" | "warning";
1334513345
type GPUCullMode = "back" | "front" | "none";
1334613346
type GPUDeviceLostReason = "destroyed" | "unknown";
1334713347
type GPUErrorFilter = "internal" | "out-of-memory" | "validation";
13348-
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";
13348+
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";
1334913349
type GPUFilterMode = "linear" | "nearest";
1335013350
type GPUFrontFace = "ccw" | "cw";
1335113351
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)