UNPKG

@nestjs/core

Version:

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

9 lines (8 loc) 273 B
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum'; export interface IRouteParamsFactory { exchangeKeyForValue(key: RouteParamtypes | string, data: any, {req, res, next}: { req: any; res: any; next: any; }): any; }