mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
12 lines
364 B
TypeScript
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;
|