UNPKG

@nestjs/common

Version:

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

6 lines (5 loc) 202 B
import { ExecutionContext } from './execution-context.interface'; /** * @publicApi */ export type CustomParamFactory<TData = any, TOutput = any> = (data: TData, context: ExecutionContext) => TOutput;