Files
DefinitelyTyped/types/express-sanitized/index.d.ts
2017-08-20 15:37:53 -07:00

12 lines
430 B
TypeScript

// Type definitions for express-sanitized 0.5
// Project: https://github.com/askhogan/express-sanitized
// Definitions by: Chris Barth <https://github.com/cjbarth>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as express from "express";
type e = () => (req: express.Request, res: express.Response, next: express.NextFunction) => void;
declare const expressSanitized: e;
export = expressSanitized;