DefinitelyTyped/types/body-parser-xml/index.d.ts
tbounsiar fe5ac79ff9 Body parser xml (#25331)
* adding react-owl-carousel types

* Update Definitions by list

Fix Test error

* Fix tslint

Fix tsconfig

* Add new Type body-parser-xml
2018-04-26 15:13:59 -07:00

12 lines
463 B
TypeScript

// Type definitions for body-parser-xml 1.1
// Project: https://github.com/fiznool/body-parser-xml
// Definitions by: tbounsiar <https://github.com/tbounsiar>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { Request, RequestHandler, Response, NextFunction } from 'express';
declare function bodyParserXml(bodyParser: any): (req: Request, res: Response, next: NextFunction) => void;
export = bodyParserXml;