diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 7f77ec1b5..c5d95cf2d 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -8119,11 +8119,23 @@ interface CanvasUserInterface { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition) */ interface CaretPosition { - /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */ + /** + * The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset) + */ readonly offset: number; - /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */ + /** + * The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode) + */ readonly offsetNode: Node; - /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */ + /** + * The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect) + */ getClientRect(): DOMRect | null; } @@ -18488,13 +18500,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -18670,13 +18682,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/serviceworker.generated.d.ts b/baselines/serviceworker.generated.d.ts index 47cc5fad2..02b5f0403 100644 --- a/baselines/serviceworker.generated.d.ts +++ b/baselines/serviceworker.generated.d.ts @@ -4468,13 +4468,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4650,13 +4650,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/sharedworker.generated.d.ts b/baselines/sharedworker.generated.d.ts index 9cfb4c3a8..5bb63c4f4 100644 --- a/baselines/sharedworker.generated.d.ts +++ b/baselines/sharedworker.generated.d.ts @@ -4151,13 +4151,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4333,13 +4333,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index b1ee88072..f86f3f164 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -8111,11 +8111,23 @@ interface CanvasUserInterface { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition) */ interface CaretPosition { - /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */ + /** + * The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset) + */ readonly offset: number; - /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */ + /** + * The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode) + */ readonly offsetNode: Node; - /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */ + /** + * The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect) + */ getClientRect(): DOMRect | null; } @@ -18467,13 +18479,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -18649,13 +18661,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.5/serviceworker.generated.d.ts b/baselines/ts5.5/serviceworker.generated.d.ts index ca2881956..295e1756e 100644 --- a/baselines/ts5.5/serviceworker.generated.d.ts +++ b/baselines/ts5.5/serviceworker.generated.d.ts @@ -4468,13 +4468,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4650,13 +4650,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.5/sharedworker.generated.d.ts b/baselines/ts5.5/sharedworker.generated.d.ts index 7b54e22b8..4fb5c5f83 100644 --- a/baselines/ts5.5/sharedworker.generated.d.ts +++ b/baselines/ts5.5/sharedworker.generated.d.ts @@ -4151,13 +4151,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4333,13 +4333,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.5/webworker.generated.d.ts b/baselines/ts5.5/webworker.generated.d.ts index d97fc636f..63867da88 100644 --- a/baselines/ts5.5/webworker.generated.d.ts +++ b/baselines/ts5.5/webworker.generated.d.ts @@ -5160,13 +5160,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -5342,13 +5342,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 2bbc155ce..7e1558a17 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -8119,11 +8119,23 @@ interface CanvasUserInterface { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition) */ interface CaretPosition { - /** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */ + /** + * The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset) + */ readonly offset: number; - /** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */ + /** + * The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode) + */ readonly offsetNode: Node; - /** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */ + /** + * The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect) + */ getClientRect(): DOMRect | null; } @@ -18488,13 +18500,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -18670,13 +18682,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.6/serviceworker.generated.d.ts b/baselines/ts5.6/serviceworker.generated.d.ts index ca2881956..295e1756e 100644 --- a/baselines/ts5.6/serviceworker.generated.d.ts +++ b/baselines/ts5.6/serviceworker.generated.d.ts @@ -4468,13 +4468,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4650,13 +4650,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.6/sharedworker.generated.d.ts b/baselines/ts5.6/sharedworker.generated.d.ts index 7b54e22b8..4fb5c5f83 100644 --- a/baselines/ts5.6/sharedworker.generated.d.ts +++ b/baselines/ts5.6/sharedworker.generated.d.ts @@ -4151,13 +4151,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -4333,13 +4333,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/ts5.6/webworker.generated.d.ts b/baselines/ts5.6/webworker.generated.d.ts index d97fc636f..63867da88 100644 --- a/baselines/ts5.6/webworker.generated.d.ts +++ b/baselines/ts5.6/webworker.generated.d.ts @@ -5160,13 +5160,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -5342,13 +5342,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/baselines/webworker.generated.d.ts b/baselines/webworker.generated.d.ts index b744f3af2..41d032889 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -5160,13 +5160,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange. * @@ -5342,13 +5342,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys) */ - getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; /** * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query. * diff --git a/inputfiles/mdn b/inputfiles/mdn index 22cf84fc5..c998eb8b8 160000 --- a/inputfiles/mdn +++ b/inputfiles/mdn @@ -1 +1 @@ -Subproject commit 22cf84fc5704222a2e2e5ac67b95b02dcfea08ff +Subproject commit c998eb8b865e9d25f281c13c0a737e9b18a2fc64 diff --git a/inputfiles/overridingTypes.jsonc b/inputfiles/overridingTypes.jsonc index 756c85010..efe629c17 100644 --- a/inputfiles/overridingTypes.jsonc +++ b/inputfiles/overridingTypes.jsonc @@ -1085,7 +1085,7 @@ "0": { "param": [ { - "name": "query", + "name": "queryOrOptions", "overrideType": "IDBValidKey | IDBKeyRange | null" } ], @@ -1099,7 +1099,7 @@ "0": { "param": [ { - "name": "query", + "name": "queryOrOptions", "overrideType": "IDBValidKey | IDBKeyRange | null" } ], @@ -1205,7 +1205,7 @@ "0": { "param": [ { - "name": "query", + "name": "queryOrOptions", "overrideType": "IDBValidKey | IDBKeyRange | null" } ], @@ -1219,7 +1219,7 @@ "0": { "param": [ { - "name": "query", + "name": "queryOrOptions", "overrideType": "IDBValidKey | IDBKeyRange | null" } ], diff --git a/inputfiles/removedTypes.jsonc b/inputfiles/removedTypes.jsonc index 2a84e0d40..80890305a 100644 --- a/inputfiles/removedTypes.jsonc +++ b/inputfiles/removedTypes.jsonc @@ -628,9 +628,10 @@ "NotificationOptions": { "members": { "member": { - // All Blink only as of 2023-10 + // All Blink only as of 2025-08 "actions": null, "image": null, + "navigate": null, // WebKit only as of 2025-08 "renotify": null, "timestamp": null, "vibrate": null @@ -786,6 +787,7 @@ "powerEfficientEncoder": null, // Blink only as of 2025-07 "encoderImplementation": null, // Blink only as of 2025-07 "encodingIndex": null, // Blink only as of 2025-07 + "packetsSentWithEct1": null, // No implementation as of 2025-08 "psnrMeasurements": null, // No implementation as of 2025-07 "psnrSum": null // No implementation as of 2025-07 } @@ -816,13 +818,6 @@ } } }, - "RTCSentRtpStreamStats": { - "members": { - "member": { - "packetsSentWithEct1": null // No implementation as of 2025-04 - } - } - }, "RTCTransportStats": { "members": { "member": { diff --git a/package-lock.json b/package-lock.json index e2743e7c5..0398f4e66 100644 --- a/package-lock.json +++ b/package-lock.json @@ -395,9 +395,9 @@ } }, "node_modules/@mdn/browser-compat-data": { - "version": "6.0.36", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-6.0.36.tgz", - "integrity": "sha512-bvPldvzuJ5FrIYPuXpoX7WedcBQzdia3rQpUbASxJ89ggzdh6Hxisfx3R5b4UwFOUEj3Qps9CAcToxhCrZI0Nw==", + "version": "6.0.37", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-6.0.37.tgz", + "integrity": "sha512-Z2+c0PAoKdrCNRHeOg6yLNx6oxVw1rYs6dz5MedomtVSINRMYNmUuEKKoq3EBp+bbcQI16v4KnksYl2wToCTUQ==", "dev": true, "license": "CC0-1.0" }, @@ -1061,9 +1061,9 @@ "license": "MIT" }, "node_modules/@webref/idl": { - "version": "3.66.0", - "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.66.0.tgz", - "integrity": "sha512-q9RKlhuG/ALrfnGVIcTDFuLwoQAiQdy2qxbYYG0d8E3AQd+7FulrEtjtZy241B2pASYxk4cD2qDOLk1LKWSzhA==", + "version": "3.66.1", + "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.66.1.tgz", + "integrity": "sha512-1nkRbMl1GU0IG1E96OPTHRNQP2ir0WZX6KFu9RN8QO/3RjlognX6OP4F4NiZu3py5zQqGmjnQd/qLKmn5yCbhQ==", "dev": true, "license": "MIT", "peerDependencies": {