mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-13 12:37:16 +08:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
13 lines
390 B
TypeScript
13 lines
390 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
|
|
// TypeScript Version: 2.2
|
|
|
|
|
|
|
|
|
|
import express = require('express');
|
|
declare function modrewrite(rewrites: string[]): express.RequestHandler;
|
|
export = modrewrite;
|