Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions baselines/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -962,6 +962,12 @@ declare var ReadableStream: {
new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream<Uint8Array<ArrayBuffer>>;
new<R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
/**
* The **`ReadableStream.from()`** static method returns a ReadableStream from a provided iterable or async iterable object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/from_static)
*/
from(asyncIterable: never<any>): ReadableStream;
};

/**
Expand Down Expand Up @@ -990,7 +996,7 @@ declare var ReadableStreamBYOBReader: {
};

/**
* 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).
* 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).
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)
*/
Expand Down Expand Up @@ -1569,25 +1575,25 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
*/
interface Exception {
/**
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
*/
readonly stack: string | undefined;
/**
* 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.
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
*/
getArg(exceptionTag: Tag, index: number): any;
/**
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
*/
Expand Down Expand Up @@ -1755,7 +1761,7 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
*/
Expand Down
Loading
Loading