UNPKG

typeorm

Version:

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

9 lines (8 loc) 288 B
import { EntityTarget } from "../common/EntityTarget"; import { TypeORMError } from "./TypeORMError"; /** * Thrown when repository for the given class is not found. */ export declare class RepositoryNotTreeError extends TypeORMError { constructor(entityClass: EntityTarget<any>); }