feat(sqlite): support pre-filled databases (#1687)

Support opening pre-filled databases with https://github.com/litehelpers/cordova-sqlite-ext.
This commit is contained in:
Kurt De Vos 2017-06-14 07:40:31 +02:00 committed by Ibby Hadeed
parent 65c2665fc0
commit b52371b174

View File

@ -16,6 +16,10 @@ export interface SQLiteDatabaseConfig {
* iOS Database Location. Example: 'Library'
*/
iosDatabaseLocation?: string;
/**
* support opening pre-filled databases with https://github.com/litehelpers/cordova-sqlite-ext
*/
createFromLocation?: number;
}
/**