UNPKG

typeorm

Version:

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

28 lines (27 loc) 842 B
/** * Dummy class for replacement via `package.json` in browser builds. * * If we don't include these functions typeorm will throw an error on runtime * as well as during webpack builds. */ export declare class ConnectionOptionsXmlReader { read(path: string): Promise<void>; } /** * Dummy class for replacement via `package.json` in browser builds. * * If we don't include these functions typeorm will throw an error on runtime * as well as during webpack builds. */ export declare class ConnectionOptionsYmlReader { read(path: string): Promise<void>; } /** * Dummy class for replacement via `package.json` in browser builds. * * If we don't include these functions typeorm will throw an error on runtime * as well as during webpack builds. */ export declare class ConnectionOptionsReader { get(): Promise<void>; }