UNPKG

typeorm

Version:

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

6 lines (5 loc) 184 B
/** * Tree type. * Specifies what table pattern will be used for the tree entity. */ export type TreeType = "adjacency-list" | "closure-table" | "nested-set" | "materialized-path";