@tsed/common
Version:
A TypeScript Framework on top of Express
14 lines (13 loc) • 331 B
TypeScript
import { Type } from "@tsed/core";
import { IPipe } from "../../models/ParamMetadata";
/**
* Register a Pipe to be used with the current decorated param.
*
* @param token
* @param options
* @decorator
* @operation
* @input
* @pipe
*/
export declare function UsePipe(token: Type<IPipe>, options?: any): ParameterDecorator;