Merge pull request #3304 from wokim/socketio

Make 'opts' to optional parameter
This commit is contained in:
Masahiro Wakame
2014-12-11 23:54:58 +09:00
+4 -4
View File
@@ -27,10 +27,10 @@ declare module SocketIO {
adapter(v: any): Server;
origins(v: string): Server;
sockets: Namespace;
attach(srv: any, opts: any): Server;
attach(port: number, opts: any): Server;
listen(srv: any, opts: any): Server;
listen(port: number, opts: any): Server;
attach(srv: any, opts?: any): Server;
attach(port: number, opts?: any): Server;
listen(srv: any, opts?: any): Server;
listen(port: number, opts?: any): Server;
bind(srv: any): Server;
onconnection(socket: any): Server;
of(nsp: string): Namespace;