forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxime LUCE
committed
Oct 21, 2015
1 parent
98a9440
commit 33b37a1
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Type definitions for connect v3.4.0. | ||
// Project: https://github.com/senchalabs/connect | ||
// Definitions by: Maxime LUCE <https://github.com/SomaticIT/> | ||
// Definitions: https://github.com/borisyankov/DefinitelyTyped | ||
|
||
/// <reference path="../node/node.d.ts" /> | ||
|
||
declare module "connect" { | ||
import * as http from "http"; | ||
|
||
/** | ||
* Create a new connect server. | ||
* @public | ||
*/ | ||
function createServer(): createServer.Server; | ||
|
||
module createServer { | ||
export type ServerHandle = HandleFunction | http.Server; | ||
export type HandleFunction = (req: http.IncomingMessage, res: http.ServerResponse, next: Function) => void; | ||
|
||
export interface ServerStackItem { | ||
route: string; | ||
handle: ServerHandle; | ||
} | ||
|
||
export interface Server extends NodeJS.EventEmitter { | ||
(req: http.IncomingMessage, res: http.ServerResponse, next: Function) => void; | ||
|
||
route: string; | ||
stack: ServerStackItem[]; | ||
|
||
/** | ||
* Utilize the given middleware `handle` to the given `route`, | ||
* defaulting to _/_. This "route" is the mount-point for the | ||
* middleware, when given a value other than _/_ the middleware | ||
* is only effective when that segment is present in the request's | ||
* pathname. | ||
* | ||
* For example if we were to mount a function at _/admin_, it would | ||
* be invoked on _/admin_, and _/admin/settings_, however it would | ||
* not be invoked for _/_, or _/posts_. | ||
* | ||
* @public | ||
*/ | ||
use(fn: HandleFunction): Server; | ||
use(route: string, fn: HandleFunction): Server; | ||
|
||
/** | ||
* Handle server requests, punting them down | ||
* the middleware stack. | ||
* | ||
* @private | ||
*/ | ||
handle(req: http.IncomingMessage, res: http.ServerResponse, next: Function): void; | ||
|
||
|
||
/** | ||
* Listen for connections. | ||
* | ||
* This method takes the same arguments | ||
* as node's `http.Server#listen()`. | ||
* | ||
* HTTP and HTTPS: | ||
* | ||
* If you run your application both as HTTP | ||
* and HTTPS you may wrap them individually, | ||
* since your Connect "server" is really just | ||
* a JavaScript `Function`. | ||
* | ||
* var connect = require('connect') | ||
* , http = require('http') | ||
* , https = require('https'); | ||
* | ||
* var app = connect(); | ||
* | ||
* http.createServer(app).listen(80); | ||
* https.createServer(options, app).listen(443); | ||
* | ||
* @api public | ||
*/ | ||
listen(port: number, hostname?: string, backlog?: number, callback?: Function): http.Server; | ||
listen(port: number, hostname?: string, callback?: Function): http.Server; | ||
listen(path: string, callback?: Function): http.Server; | ||
listen(handle: any, listeningListener?: Function): http.Server; | ||
} | ||
} | ||
|
||
export = createServer; | ||
} |