import type { EntitySchema } from "../entity-schema/EntitySchema"; import type { ObjectType } from "./ObjectType"; /** * Entity target. */ export type EntityTarget = ObjectType | EntitySchema | string | { type: Entity; name: string; };