Skip to content

Commit

Permalink
Port fix for #12069
Browse files Browse the repository at this point in the history
  • Loading branch information
mhegazy committed Nov 8, 2016
1 parent ddc4ae7 commit 13dda56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7586,7 +7586,7 @@ declare var IDBCursorWithValue: {

interface IDBDatabase extends EventTarget {
readonly name: string;
readonly objectStoreNames: string[];
readonly objectStoreNames: DOMStringList;
onabort: (this: this, ev: Event) => any;
onerror: (this: this, ev: ErrorEvent) => any;
version: number;
Expand Down Expand Up @@ -7652,7 +7652,7 @@ declare var IDBKeyRange: {
}

interface IDBObjectStore {
readonly indexNames: string[];
readonly indexNames: DOMStringList;
keyPath: string | string[];
readonly name: string;
readonly transaction: IDBTransaction;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ declare var IDBCursorWithValue: {

interface IDBDatabase extends EventTarget {
readonly name: string;
readonly objectStoreNames: string[];
readonly objectStoreNames: DOMStringList;
onabort: (this: this, ev: Event) => any;
onerror: (this: this, ev: ErrorEvent) => any;
version: number;
Expand Down Expand Up @@ -407,7 +407,7 @@ declare var IDBKeyRange: {
}

interface IDBObjectStore {
readonly indexNames: string[];
readonly indexNames: DOMStringList;
keyPath: string | string[];
readonly name: string;
readonly transaction: IDBTransaction;
Expand Down

0 comments on commit 13dda56

Please sign in to comment.