UNPKG

typeorm

Version:

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

15 lines (14 loc) 563 B
import { EntityMetadata } from "../metadata/EntityMetadata"; import { DataSource } from "../data-source/DataSource"; /** * Creates EntityMetadata for junction tables of the closure entities. * Closure junction tables are tables generated by closure entities. */ export declare class ClosureJunctionEntityMetadataBuilder { private connection; constructor(connection: DataSource); /** * Builds EntityMetadata for the closure junction of the given closure entity. */ build(parentClosureEntityMetadata: EntityMetadata): EntityMetadata; }