Make 'opts' to optional parameter

This commit is contained in:
wokim
2014-12-11 23:41:13 +09:00
parent 3bdf7dd603
commit 417aa79b1a
+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;