UNPKG

typeorm

Version:

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

15 lines (14 loc) 291 B
import { TreeType } from "../metadata/types/TreeTypes"; /** * Stores metadata collected for Tree entities. */ export interface TreeMetadataArgs { /** * Entity to which tree is applied. */ target: Function | string; /** * Tree type. */ type: TreeType; }