mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-26 19:04:13 +08:00
12 lines
430 B
TypeScript
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;
|