UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

11 lines (10 loc) 340 B
/** * Tree type. * Specifies what table pattern will be used for the tree entity. */ import type { ColumnMetadata } from "../ColumnMetadata"; export interface ClosureTreeOptions { closureTableName?: string; ancestorColumnName?: (column: ColumnMetadata) => string; descendantColumnName?: (column: ColumnMetadata) => string; }