diff --git a/dexie/dexie.d.ts b/dexie/dexie.d.ts index 2de122385e..2a527cff93 100644 --- a/dexie/dexie.d.ts +++ b/dexie/dexie.d.ts @@ -13,7 +13,7 @@ interface Thenable { declare class Dexie { constructor(databaseName: string); - constructor(databaseName: string, options: { addons: Array<(db: Dexie) => void> }); + constructor(databaseName: string, options: { addons: Array<(db: Dexie) => void> });b name: string; tables: Dexie.Table[]; @@ -40,7 +40,7 @@ declare class Dexie { static delete(databaseName : string): Dexie.Promise; - static exists(databaseName : string): Dexie.Promise; + static exists(databaseName : string): Dexie.Promise; version(versionNumber: number): Dexie.Version;