alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
25 lines (24 loc) • 497 B
TypeScript
import { BaseDataSourceOptions } from "../BaseDataSourceOptions";
/**
* Sqlite-specific connection options.
*/
export interface CordovaConnectionOptions extends BaseDataSourceOptions {
/**
* Database type.
*/
type: "cordova";
/**
* Database name.
*/
database: string;
/**
* The driver object
* This defaults to `window.sqlitePlugin`
*/
driver?: any;
/**
* Storage Location
*/
location: string;
poolSize?: never;
}