UNPKG

327 BTypeScriptView Raw
1import { type Middleware } from "../typings/middleware.js";
2import { type MethodPropClassDecorator } from "./types.js";
3export declare function UseMiddleware(middlewares: Array<Middleware<any>>): MethodPropClassDecorator;
4export declare function UseMiddleware(...middlewares: Array<Middleware<any>>): MethodPropClassDecorator;