import { AnyEntity } from "../../entity/any-entity.type"; import { EntityType } from "../../entity/entity-type.interface"; import { RelationField } from "../../field/field-names/relation-field.type"; export class EntityRelationMeta { constructor( readonly target: () => EntityType, readonly inverse: RelationField, readonly multi = false, ) {} }