@tsclean/core
Version:
Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.
11 lines • 410 B
TypeScript
import { RouteParamTypes } from "../enums";
import { ParamData } from "../decorators";
import { HandlerTransform } from "./handler-transform";
export interface ParamPropertiesInterface {
index: number;
type: RouteParamTypes | string;
data: ParamData;
handlers: HandlerTransform[];
extractValue: <T, R>(req: T, res: R, next: Function) => any;
}
//# sourceMappingURL=param-properties.d.ts.map