SignalR: updated HubProxy

This commit is contained in:
gstamac
2013-08-24 15:10:40 +02:00
parent 1e38049e61
commit 75ae60a20b
+3
View File
@@ -69,6 +69,9 @@ interface SignalR {
interface HubProxy {
(connection: HubConnection, hubName: string): HubProxy;
state: any;
connection: HubConnection;
hubName: string;
init(connection: HubConnection, hubName: string): void;
hasSubscriptions(): boolean;
on(eventName: string, callback: (...msg) => void ): HubProxy;