Merge pull request #3845 from elisee/patch-1

socket.io.d.ts: Declare Socket.conn as any
This commit is contained in:
Masahiro Wakame
2015-03-15 21:39:49 +09:00
+1 -1
View File
@@ -55,7 +55,7 @@ declare module SocketIO {
interface Socket {
rooms: string[];
client: Client;
conn: Socket;
conn: any;
request: any;
id: string;
emit(name: string, ...args: any[]): Socket;