Merge pull request #6476 from larrifax/patch-1

Add transport property to SignalR's HubConnection
This commit is contained in:
Boris Yankov
2015-11-02 17:47:52 +02:00
+1
View File
@@ -90,6 +90,7 @@ interface HubConnectionSettings {
interface HubConnection extends SignalR {
//(url?: string, queryString?: any, logging?: boolean): HubConnection;
proxies: any;
transport: { name: string, supportsKeepAlive: () => boolean };
received(callback: (data: { Id: any; Method: any; Hub: any; State: any; Args: any; }) => void ): HubConnection;
createHubProxy(hubName: string): HubProxy;
}