Skip to content

Commit 9542458

Browse files
🤖 Update core dependencies
1 parent bbf2e75 commit 9542458

31 files changed

Lines changed: 6230 additions & 2444 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
*/

0 commit comments

Comments
 (0)