UNPKG

@nestjs/swagger

Version:

Nest - modern, fast, powerful node.js web framework (@swagger)

8 lines (7 loc) 258 B
import { Type } from '@nestjs/common'; export interface ApiLinkOptions { from: Type<unknown> | Function; fromField?: string; routeParam: string; } export declare function ApiLink({ from, fromField, routeParam }: ApiLinkOptions): MethodDecorator;