mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Allow typing express body, params, query and cookies through generics * Increase minor version * Add ts version comment * Fix ts requirement comment typo * Bump all ts version packages * Bump Morgan package
13 lines
457 B
TypeScript
13 lines
457 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
|
|
// TypeScript Version: 2.3
|
|
|
|
import * as express from "express";
|
|
|
|
type e = () => (req: express.Request, res: express.Response, next: express.NextFunction) => void;
|
|
|
|
declare const expressSanitized: e;
|
|
export = expressSanitized;
|