Add transport property to SignalR's HubConnection

This commit is contained in:
Kristian Tryggestad
2015-10-27 16:33:46 +01:00
parent 62eedc3121
commit 59f9108f4e

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;
}