import { Collection } from "../field/field-values/collection.class"; import { AnyEntity } from "./any-entity.type"; export type EntityFromRelationFieldValue< FieldValue extends AnyEntity | Collection, > = FieldValue extends AnyEntity ? FieldValue : FieldValue extends Collection ? Entity : never;