Files
DefinitelyTyped/connect-modrewrite/index.d.ts
2016-04-27 21:30:22 -07:00

12 lines
364 B
TypeScript

// Type definitions for connect-modrewrite
// Project: https://github.com/tinganho/connect-modrewrite
// Definitions by: Tingan Ho <https://github.com/tinganho/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import express = require('express');
declare function modrewrite(rewrites: string[]): express.RequestHandler;
export = modrewrite;