UNPKG

typeorm

Version:

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

15 lines (14 loc) 360 B
import { BaseConnectionOptions } from "../../connection/BaseConnectionOptions"; /** * Sqlite-specific connection options. */ export interface SqliteConnectionOptions extends BaseConnectionOptions { /** * Database type. */ readonly type: "sqlite"; /** * Storage type or path to the storage. */ readonly database: string; }