UNPKG

typeorm

Version:

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

10 lines (9 loc) 241 B
import { ObjectType } from "./ObjectType"; import { EntitySchema } from ".."; /** * Entity target. */ export declare type EntityTarget<Entity> = ObjectType<Entity> | EntitySchema<Entity> | string | { type: Entity; name: string; };