UNPKG

typeorm

Version:

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

10 lines (9 loc) 406 B
import { DataSourceOptions } from "../data-source/DataSourceOptions"; /** * ConnectionOptions is an interface with settings and options for specific connection. * Options contain database and other connection-related settings. * Consumer must provide connection options for each of your connections. * * @deprecated use DataSourceOptions instead */ export type ConnectionOptions = DataSourceOptions;