UNPKG

anomaly-express

Version:

Anomaly Express is a security framework for Express.js that provides a set of tools and utilities to help you build secure applications.

5 lines 192 B
import { Request, Response, NextFunction } from "express"; export interface Middleware { (req: Request, res: Response, next: NextFunction): void; } //# sourceMappingURL=Middleware.d.ts.map