Skip to content

Commit 2bf38ab

Browse files
authored
Port fix for #12069 (#12095)
1 parent 8f568d4 commit 2bf38ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/lib/dom.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7586,7 +7586,7 @@ declare var IDBCursorWithValue: {
75867586

75877587
interface IDBDatabase extends EventTarget {
75887588
readonly name: string;
7589-
readonly objectStoreNames: string[];
7589+
readonly objectStoreNames: DOMStringList;
75907590
onabort: (this: this, ev: Event) => any;
75917591
onerror: (this: this, ev: ErrorEvent) => any;
75927592
version: number;
@@ -7652,7 +7652,7 @@ declare var IDBKeyRange: {
76527652
}
76537653

76547654
interface IDBObjectStore {
7655-
readonly indexNames: string[];
7655+
readonly indexNames: DOMStringList;
76567656
keyPath: string | string[];
76577657
readonly name: string;
76587658
readonly transaction: IDBTransaction;

src/lib/webworker.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ declare var IDBCursorWithValue: {
341341

342342
interface IDBDatabase extends EventTarget {
343343
readonly name: string;
344-
readonly objectStoreNames: string[];
344+
readonly objectStoreNames: DOMStringList;
345345
onabort: (this: this, ev: Event) => any;
346346
onerror: (this: this, ev: ErrorEvent) => any;
347347
version: number;
@@ -407,7 +407,7 @@ declare var IDBKeyRange: {
407407
}
408408

409409
interface IDBObjectStore {
410-
readonly indexNames: string[];
410+
readonly indexNames: DOMStringList;
411411
keyPath: string | string[];
412412
readonly name: string;
413413
readonly transaction: IDBTransaction;

0 commit comments

Comments
 (0)