import { ClassConstructor } from "@medusajs/medusa"; import { UltimateEntityRelation } from "../types/ultimate-entity-relation"; interface Data extends Pick { /** * inverse relation property name */ relationEntityPropertyName: string; } export default function UltimateEntityOneToManyRelation(relationEntity: ClassConstructor, data: Data): PropertyDecorator; export {};