UNPKG

@tsclean/core

Version:

Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.

9 lines 353 B
import { RouteParamTypes } from "../enums"; export interface RouteParamsFactoryInterface { exchangeKeyForValue<T extends Record<string, any> = any, R = any, Q = any>(key: RouteParamTypes | string, data: any, { req, res, next }: { req: T; res: R; next: Function; }): Q; } //# sourceMappingURL=route-params-factory.d.ts.map