typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
20 lines (19 loc) • 429 B
TypeScript
import { BaseDataSourceOptions } from "../../data-source/BaseDataSourceOptions";
/**
* Sqlite-specific connection options.
*/
export interface ExpoConnectionOptions extends BaseDataSourceOptions {
/**
* Database type.
*/
readonly type: "expo";
/**
* Database name.
*/
readonly database: string;
/**
* Driver module
*/
readonly driver: any;
readonly poolSize?: never;
}