UNPKG

typeorm

Version:

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

12 lines (11 loc) 297 B
import { Driver } from "./Driver"; import { Connection } from "../connection/Connection"; /** * Helps to create drivers. */ export declare class DriverFactory { /** * Creates a new driver depend on a given connection's driver type. */ create(connection: Connection): Driver; }