diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 7f77ec1b5..deb555ab8 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -1260,6 +1260,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -1827,6 +1828,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats { mediaSourceId?: string; mid?: string; nackCount?: number; + packetsSentWithEct1?: number; pliCount?: number; qpSum?: number; qualityLimitationDurations?: Record; @@ -8119,11 +8121,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 +18502,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +18684,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..846beb07e 100644 --- a/baselines/serviceworker.generated.d.ts +++ b/baselines/serviceworker.generated.d.ts @@ -450,6 +450,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4468,13 +4469,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4651,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..d2f91bdb8 100644 --- a/baselines/sharedworker.generated.d.ts +++ b/baselines/sharedworker.generated.d.ts @@ -389,6 +389,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4151,13 +4152,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4334,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..f4d0247b1 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -1260,6 +1260,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -1827,6 +1828,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats { mediaSourceId?: string; mid?: string; nackCount?: number; + packetsSentWithEct1?: number; pliCount?: number; qpSum?: number; qualityLimitationDurations?: Record; @@ -8111,11 +8113,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 +18481,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +18663,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..091c2d345 100644 --- a/baselines/ts5.5/serviceworker.generated.d.ts +++ b/baselines/ts5.5/serviceworker.generated.d.ts @@ -450,6 +450,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4468,13 +4469,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4651,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..168101517 100644 --- a/baselines/ts5.5/sharedworker.generated.d.ts +++ b/baselines/ts5.5/sharedworker.generated.d.ts @@ -389,6 +389,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4151,13 +4152,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4334,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..ef94ba795 100644 --- a/baselines/ts5.5/webworker.generated.d.ts +++ b/baselines/ts5.5/webworker.generated.d.ts @@ -558,6 +558,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -5160,13 +5161,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +5343,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..977f8f350 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -1260,6 +1260,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -1827,6 +1828,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats { mediaSourceId?: string; mid?: string; nackCount?: number; + packetsSentWithEct1?: number; pliCount?: number; qpSum?: number; qualityLimitationDurations?: Record; @@ -8119,11 +8121,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 +18502,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +18684,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..091c2d345 100644 --- a/baselines/ts5.6/serviceworker.generated.d.ts +++ b/baselines/ts5.6/serviceworker.generated.d.ts @@ -450,6 +450,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4468,13 +4469,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4651,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..168101517 100644 --- a/baselines/ts5.6/sharedworker.generated.d.ts +++ b/baselines/ts5.6/sharedworker.generated.d.ts @@ -389,6 +389,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -4151,13 +4152,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +4334,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..ef94ba795 100644 --- a/baselines/ts5.6/webworker.generated.d.ts +++ b/baselines/ts5.6/webworker.generated.d.ts @@ -558,6 +558,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -5160,13 +5161,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +5343,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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..2e1c47a83 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -558,6 +558,7 @@ interface NotificationOptions { dir?: NotificationDirection; icon?: string; lang?: string; + navigate?: string; requireInteraction?: boolean; silent?: boolean | null; tag?: string; @@ -5160,13 +5161,13 @@ interface IDBIndex { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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 +5343,13 @@ interface IDBObjectStore { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll) */ - getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest; + getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): 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/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": {