fix(sqlite): fix SQLiteDatabaseConfig interface

closes #1280
This commit is contained in:
Ibby Hadeed 2017-03-28 08:09:07 -04:00
parent bc364d1cb1
commit ea88c9e4a8

View File

@ -12,11 +12,11 @@ export interface SQLiteDatabaseConfig {
/** /**
* Location of the database. Example: 'default' * Location of the database. Example: 'default'
*/ */
location: string; location?: string;
/** /**
* iOS Database Location. Example: 'Library' * iOS Database Location. Example: 'Library'
*/ */
iosDatabaseLocation: string; iosDatabaseLocation?: string;
} }
/** /**