Skip to content
Closed
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
4 changes: 2 additions & 2 deletions src/lib/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14549,7 +14549,7 @@ declare var IDBFactory: {
*/
interface IDBIndex {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/keyPath) */
readonly keyPath: string | string[];
readonly keyPath: string | string[] | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry) */
readonly multiEntry: boolean;
/**
Expand Down Expand Up @@ -14719,7 +14719,7 @@ interface IDBObjectStore {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
*/
readonly keyPath: string | string[];
readonly keyPath: string | string[] | null;
/**
* Returns the name of the store.
*
Expand Down
Loading