SignalR Updated: Added ConnectionState const enum.

* Added ConnectionState const enum.

* Enum casing changed to Pascal case.

* Fixed mistype
This commit is contained in:
Giedrius Grabauskas
2016-04-06 14:13:24 +03:00
committed by Masahiro Wakame
parent a4c6924a60
commit 9ccdf35169

View File

@@ -8,6 +8,13 @@
declare namespace SignalR {
const enum ConnectionState {
Connecting = 0,
Connected = 1,
Reconnecting = 2,
Disconnected = 4
}
interface AvailableEvents {
onStart: string;