UNPKG

json-api-nestjs

Version:
6 lines (5 loc) 424 B
import { EntityRelation } from '../../../../utils/nestjs-shared'; import { ObjectLiteral } from '../../../../types'; import { PatchRelationshipData } from '../../../mixin/zod'; import { MicroOrmService } from '../../service'; export declare function patchRelationship<E extends ObjectLiteral, Rel extends EntityRelation<E>>(this: MicroOrmService<E>, id: number | string, rel: Rel, input: PatchRelationshipData): Promise<E>;