Skip to content

Instantly share code, notes, and snippets.

@Odonno
Created July 27, 2019 15:53
Show Gist options
  • Save Odonno/0160a81bab795809dcdaa2a5f5716e8a to your computer and use it in GitHub Desktop.
Save Odonno/0160a81bab795809dcdaa2a5f5716e8a to your computer and use it in GitHub Desktop.
ngrx/signalr - part state definition
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