Skip to content

Commit 5c72ec3

Browse files
🤖 Update core dependencies
1 parent 0082b1b commit 5c72ec3

29 files changed

Lines changed: 6410 additions & 2673 deletions

baselines/audioworklet.generated.d.ts

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -962,6 +962,12 @@ declare var ReadableStream: {
962962
new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream<Uint8Array<ArrayBuffer>>;
963963
new<R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
964964
new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
965+
/**
966+
* The **`ReadableStream.from()`** static method returns a ReadableStream from a provided iterable or async iterable object.
967+
*
968+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/from_static)
969+
*/
970+
from(asyncIterable: never<any>): ReadableStream;
965971
};
966972

967973
/**
@@ -990,7 +996,7 @@ declare var ReadableStreamBYOBReader: {
990996
};
991997

992998
/**
993-
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a "pull request" for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
999+
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a "pull request" for data from an underlying source that will be made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
9941000
*
9951001
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)
9961002
*/
@@ -1569,25 +1575,25 @@ declare namespace WebAssembly {
15691575
};
15701576

15711577
/**
1572-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1578+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15731579
*
15741580
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15751581
*/
15761582
interface Exception {
15771583
/**
1578-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1584+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15791585
*
15801586
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15811587
*/
15821588
readonly stack: string | undefined;
15831589
/**
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.
1590+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15851591
*
15861592
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15871593
*/
15881594
getArg(exceptionTag: Tag, index: number): any;
15891595
/**
1590-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1596+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15911597
*
15921598
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15931599
*/
@@ -1755,7 +1761,7 @@ declare namespace WebAssembly {
17551761
};
17561762

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

baselines/dom.generated.d.ts

Lines changed: 571 additions & 310 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 240 additions & 71 deletions
Large diffs are not rendered by default.

baselines/sharedworker.generated.d.ts

Lines changed: 193 additions & 75 deletions
Large diffs are not rendered by default.

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -959,6 +959,12 @@ declare var ReadableStream: {
959959
new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream<Uint8Array>;
960960
new<R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
961961
new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
962+
/**
963+
* The **`ReadableStream.from()`** static method returns a ReadableStream from a provided iterable or async iterable object.
964+
*
965+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/from_static)
966+
*/
967+
from(asyncIterable: never<any>): ReadableStream;
962968
};
963969

964970
/**
@@ -987,7 +993,7 @@ declare var ReadableStreamBYOBReader: {
987993
};
988994

989995
/**
990-
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a "pull request" for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
996+
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a "pull request" for data from an underlying source that will be made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
991997
*
992998
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)
993999
*/
@@ -1566,25 +1572,25 @@ declare namespace WebAssembly {
15661572
};
15671573

15681574
/**
1569-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1575+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15701576
*
15711577
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15721578
*/
15731579
interface Exception {
15741580
/**
1575-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1581+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15761582
*
15771583
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15781584
*/
15791585
readonly stack: string | undefined;
15801586
/**
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.
1587+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15821588
*
15831589
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15841590
*/
15851591
getArg(exceptionTag: Tag, index: number): any;
15861592
/**
1587-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1593+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15881594
*
15891595
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15901596
*/
@@ -1752,7 +1758,7 @@ declare namespace WebAssembly {
17521758
};
17531759

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

0 commit comments

Comments
 (0)