typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
19 lines (18 loc) • 420 B
TypeScript
import { BaseConnectionOptions } from "../../connection/BaseConnectionOptions";
/**
* Sqlite-specific connection options.
*/
export interface ReactNativeConnectionOptions extends BaseConnectionOptions {
/**
* Database type.
*/
readonly type: "react-native";
/**
* Database name.
*/
readonly database: string;
/**
* Storage Location
*/
readonly location: string;
}