Spaces:
Sleeping
Sleeping
File size: 202 Bytes
cd6720a | 1 2 3 4 5 6 | import { ExecutionContext } from './execution-context.interface';
/**
* @publicApi
*/
export type CustomParamFactory<TData = any, TOutput = any> = (data: TData, context: ExecutionContext) => TOutput;
|