mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Update dexie.d.ts
Fix embarrassing typo
This commit is contained in:
Vendored
+2
-2
@@ -13,7 +13,7 @@ interface Thenable<R> {
|
||||
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<any, any>[];
|
||||
@@ -40,7 +40,7 @@ declare class Dexie {
|
||||
|
||||
static delete(databaseName : string): Dexie.Promise<void>;
|
||||
|
||||
static exists(databaseName : string): Dexie.Promise<bool>;
|
||||
static exists(databaseName : string): Dexie.Promise<boolean>;
|
||||
|
||||
version(versionNumber: number): Dexie.Version;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user