Created
July 27, 2019 15:53
-
-
Save Odonno/0160a81bab795809dcdaa2a5f5716e8a to your computer and use it in GitHub Desktop.
ngrx/signalr - part state definition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type SignalRHubState = | |
| typeof unstarted | |
| typeof connected | |
| typeof disconnected; | |
type SignalRHubStatus = { | |
hubName: string; | |
url: string; | |
state: SignalRHubState; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment