json-api-nestjs
Version:
JsonApi Plugin for NestJs
5 lines (4 loc) • 332 B
TypeScript
import { EntityRelation } from '../../../../utils/nestjs-shared';
import { MicroOrmService } from '../../service';
import { ObjectLiteral } from '../../../../types';
export declare function getRelationship<E extends ObjectLiteral, Rel extends EntityRelation<E>>(this: MicroOrmService<E>, id: number | string, rel: Rel): Promise<E>;