File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7586,7 +7586,7 @@ declare var IDBCursorWithValue: {
7586
7586
7587
7587
interface IDBDatabase extends EventTarget {
7588
7588
readonly name: string;
7589
- readonly objectStoreNames: string[] ;
7589
+ readonly objectStoreNames: DOMStringList ;
7590
7590
onabort: (this: this, ev: Event) => any;
7591
7591
onerror: (this: this, ev: ErrorEvent) => any;
7592
7592
version: number;
@@ -7652,7 +7652,7 @@ declare var IDBKeyRange: {
7652
7652
}
7653
7653
7654
7654
interface IDBObjectStore {
7655
- readonly indexNames: string[] ;
7655
+ readonly indexNames: DOMStringList ;
7656
7656
keyPath: string | string[];
7657
7657
readonly name: string;
7658
7658
readonly transaction: IDBTransaction;
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ declare var IDBCursorWithValue: {
341
341
342
342
interface IDBDatabase extends EventTarget {
343
343
readonly name : string ;
344
- readonly objectStoreNames : string [ ] ;
344
+ readonly objectStoreNames : DOMStringList ;
345
345
onabort : ( this : this, ev : Event ) => any ;
346
346
onerror : ( this : this, ev : ErrorEvent ) => any ;
347
347
version : number ;
@@ -407,7 +407,7 @@ declare var IDBKeyRange: {
407
407
}
408
408
409
409
interface IDBObjectStore {
410
- readonly indexNames : string [ ] ;
410
+ readonly indexNames : DOMStringList ;
411
411
keyPath : string | string [ ] ;
412
412
readonly name : string ;
413
413
readonly transaction : IDBTransaction ;
You can’t perform that action at this time.
0 commit comments