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
258 changes: 145 additions & 113 deletions baselines/dom.generated.d.ts

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ declare var CSSMathProduct: {
*/
interface CSSMathSum extends CSSMathValue {
/**
* The **`CSSMathSum.values`** read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
* The **`CSSMathSum.values`** read-only property of the CSSMathSum interface returns a CSSNumericArray object that contains one or more CSSNumericValue objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum/values)
*/
Expand Down Expand Up @@ -1769,7 +1769,7 @@ declare var CSSMathValue: {
*/
interface CSSMatrixComponent extends CSSTransformComponent {
/**
* The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
* The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2D or 3D matrix.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)
*/
Expand Down Expand Up @@ -1821,7 +1821,7 @@ interface CSSNumericValue extends CSSStyleValue {
*/
div(...values: CSSNumberish[]): CSSNumericValue;
/**
* The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal. To return a value of true, all passed values must be of the same type and value and must be in the same order. This allows structural equality to be tested quickly.
* The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed values are strictly equal. To return a value of true, all passed values must be of the same type and value and must be in the same order. This allows structural equality to be tested quickly.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)
*/
Expand Down Expand Up @@ -1919,7 +1919,7 @@ interface CSSRotate extends CSSTransformComponent {
*/
y: CSSNumberish;
/**
* The **`z`** property of the CSSRotate interface representing the z-component of the translating vector. A positive value moves the element towards the viewer, and a negative value farther away.
* The **`z`** property of the CSSRotate interface representing the z-component of the translating vector. A positive value moves the element towards the viewer and a negative value farther away.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)
*/
Expand Down Expand Up @@ -6416,7 +6416,7 @@ interface IDBRequestEventMap {
}

/**
* 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.
* The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)
*/
Expand Down Expand Up @@ -6988,7 +6988,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 @@ -7071,7 +7071,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 @@ -8493,7 +8493,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 @@ -8976,7 +8976,7 @@ declare var StorageManager: {
*/
interface StylePropertyMapReadOnly {
/**
* The **`size`** read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the StylePropertyMapReadOnly object.
* The **`size`** read-only property of the StylePropertyMapReadOnly interface returns a positive integer containing the size of the StylePropertyMapReadOnly object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)
*/
Expand Down Expand Up @@ -12922,25 +12922,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 @@ -13108,7 +13108,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 Expand Up @@ -13660,7 +13660,7 @@ type GPUCompilationMessageType = "error" | "info" | "warning";
type GPUCullMode = "back" | "front" | "none";
type GPUDeviceLostReason = "destroyed" | "unknown";
type GPUErrorFilter = "internal" | "out-of-memory" | "validation";
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";
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";
type GPUFilterMode = "linear" | "nearest";
type GPUFrontFace = "ccw" | "cw";
type GPUIndexFormat = "uint16" | "uint32";
Expand Down
Loading