UNPKG

typeorm

Version:

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

17 lines (16 loc) 443 B
/** * Common driver utility functions. */ export declare class DriverUtils { /** * Normalizes and builds a new driver options. * Extracts settings from connection url and sets to a new options object. */ static buildDriverOptions(options: any, buildOptions?: { useSid: boolean; }): any; /** * Extracts connection data from the connection url. */ private static parseConnectionUrl(url); }