UNPKG

typeorm

Version:

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

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