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
10 changes: 5 additions & 5 deletions baselines/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1569,25 +1569,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 +1755,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
211 changes: 121 additions & 90 deletions baselines/dom.generated.d.ts

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,7 @@ interface GPUPipelineErrorInit {

interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
bindGroupLayouts: (GPUBindGroupLayout | null)[];
immediateSize?: GPUSize32;
}

interface GPUPrimitiveState {
Expand Down Expand Up @@ -6955,7 +6956,7 @@ interface NotificationEventMap {
*/
interface Notification extends EventTarget {
/**
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
*/
Expand Down Expand Up @@ -7038,7 +7039,7 @@ declare var Notification: {
prototype: Notification;
new(title: string, options?: NotificationOptions): Notification;
/**
* 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.
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
*/
Expand Down Expand Up @@ -8459,7 +8460,7 @@ interface Response extends Body {
*/
readonly redirected: boolean;
/**
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
*/
Expand Down Expand Up @@ -12847,25 +12848,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 @@ -13033,7 +13034,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
17 changes: 9 additions & 8 deletions baselines/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ interface GPUPipelineErrorInit {

interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
bindGroupLayouts: (GPUBindGroupLayout | null)[];
immediateSize?: GPUSize32;
}

interface GPUPrimitiveState {
Expand Down Expand Up @@ -6638,7 +6639,7 @@ interface NotificationEventMap {
*/
interface Notification extends EventTarget {
/**
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
* The **`actions`** read-only property of the Notification interface provides the actions available for users to select when interacting with the notification.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
*/
Expand Down Expand Up @@ -6721,7 +6722,7 @@ declare var Notification: {
prototype: Notification;
new(title: string, options?: NotificationOptions): Notification;
/**
* 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.
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions that can be displayed in a notification.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
*/
Expand Down Expand Up @@ -8042,7 +8043,7 @@ interface Response extends Body {
*/
readonly redirected: boolean;
/**
* The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.
* The **`status`** read-only property of the Response interface contains the HTTP status code of the response.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)
*/
Expand Down Expand Up @@ -12573,25 +12574,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 @@ -12759,7 +12760,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
10 changes: 5 additions & 5 deletions baselines/ts5.5/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1566,25 +1566,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 @@ -1752,7 +1752,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