mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
Added definition for sockjs-node
This commit is contained in:
56
sockjs-node/sockjs-node.d.ts
vendored
Normal file
56
sockjs-node/sockjs-node.d.ts
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
// Type definitions for sockjs-node 0.3.x
|
||||
// Project: https://github.com/sockjs/sockjs-node
|
||||
// Definitions by: Phil McCloghry-Laing <https://github.com/pmccloghrylaing>
|
||||
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../node/node.d.ts" />
|
||||
|
||||
declare module "sockjs" {
|
||||
import http = require('http');
|
||||
|
||||
export interface ServerOptions {
|
||||
sockjs_url?: string;
|
||||
prefix?: string;
|
||||
response_limit?: number;
|
||||
websocket?: boolean;
|
||||
jsessionid?: any;
|
||||
log?: (severity: string, message: string) => void;
|
||||
heartbeat_delay?: number;
|
||||
disconnect_delay?: number;
|
||||
}
|
||||
|
||||
export function createServer(options?: ServerOptions): Server;
|
||||
|
||||
export interface Server extends NodeJS.EventEmitter {
|
||||
installHandlers(server: http.Server, options?: ServerOptions): any;
|
||||
|
||||
on(event: 'connection', listener: (conn: Connection) => any): Server;
|
||||
on(event: string, listener: Function): Server;
|
||||
}
|
||||
|
||||
export interface Connection extends NodeJS.ReadWriteStream {
|
||||
remoteAddress: string;
|
||||
remotePort: number;
|
||||
address: {
|
||||
[key: string]: {
|
||||
address: string;
|
||||
port: number;
|
||||
};
|
||||
};
|
||||
headers: {
|
||||
[key: string]: string;
|
||||
};
|
||||
url: string;
|
||||
pathname: string;
|
||||
prefix: string;
|
||||
protocol: string;
|
||||
readyState: number;
|
||||
|
||||
close(code?: string, reason?: string): boolean;
|
||||
destroy(): void;
|
||||
|
||||
on(event: 'data', listener: (message: string) => any): Connection;
|
||||
on(event: 'close', listener: () => void): Connection;
|
||||
on(event: string, listener: Function): Connection;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user