File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7586,7 +7586,7 @@ declare var IDBCursorWithValue: {
75867586
75877587interface 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
76547654interface IDBObjectStore {
7655- readonly indexNames: string[] ;
7655+ readonly indexNames: DOMStringList ;
76567656 keyPath: string | string[];
76577657 readonly name: string;
76587658 readonly transaction: IDBTransaction;
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ declare var IDBCursorWithValue: {
341341
342342interface 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
409409interface IDBObjectStore {
410- readonly indexNames : string [ ] ;
410+ readonly indexNames : DOMStringList ;
411411 keyPath : string | string [ ] ;
412412 readonly name : string ;
413413 readonly transaction : IDBTransaction ;
You can’t perform that action at this time.
0 commit comments