UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

25 lines (24 loc) 583 B
import { BaseDataSourceOptions } from "../../data-source/BaseDataSourceOptions"; /** * Sqlite-specific connection options. */ export interface ReactNativeConnectionOptions extends BaseDataSourceOptions { /** * Database type. */ readonly type: "react-native"; /** * Database name. */ readonly database: string; /** * The driver object * This defaults to require("react-native-sqlite-storage") */ readonly driver?: any; /** * Storage Location */ readonly location: string; readonly poolSize?: never; }