mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* adding react-owl-carousel types * Update Definitions by list Fix Test error * Fix tslint Fix tsconfig * Add new Type body-parser-xml
12 lines
463 B
TypeScript
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;
|