UNPKG

258 BTypeScriptView Raw
1import { Type } from '@nestjs/common';
2export interface ApiLinkOptions {
3 from: Type<unknown> | Function;
4 fromField?: string;
5 routeParam: string;
6}
7export declare function ApiLink({ from, fromField, routeParam }: ApiLinkOptions): MethodDecorator;