typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
39 lines (38 loc) • 1.17 kB
TypeScript
/**
* 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 ConnectionOptionsEnvReader {
read(): 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 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 {
all(): Promise<void>;
get(): Promise<void>;
has(): Promise<void>;
}