UNPKG

308 BTypeScriptView Raw
1import { Middleware } from "../interfaces/Middleware";
2import { MethodAndPropDecorator } from "./types";
3export declare function UseMiddleware(middlewares: Array<Middleware<any>>): MethodAndPropDecorator;
4export declare function UseMiddleware(...middlewares: Array<Middleware<any>>): MethodAndPropDecorator;