mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
11 lines
393 B
TypeScript
11 lines
393 B
TypeScript
// Type definitions for rebind-host 1.0
|
|
// Project: https://github.com/truffls/node-rebind-host#readme
|
|
// Definitions by: Tyler Johnson <https://github.com/tyler-johnson>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
import { Handler } from "express";
|
|
|
|
declare function createRebindHost(forceHost?: string): Handler;
|
|
export = createRebindHost;
|