UNPKG

innomize-typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

20 lines (19 loc) 483 B
import { BaseConnectionOptions } from "../../connection/BaseConnectionOptions"; /** * NativeScript-specific connection options. */ export interface NativescriptConnectionOptions extends BaseConnectionOptions { /** * Database type. */ readonly type: "nativescript"; /** * Database name. */ readonly database: string; /** * The driver object * you should pass `require('nativescript-sqlite') here */ readonly driver: any; }