Skip to content

Instantly share code, notes, and snippets.

@OliverJAsh
Created November 22, 2018 08:32
Show Gist options
  • Save OliverJAsh/1a931b45b362e03f5f9ba7e5a17c5763 to your computer and use it in GitHub Desktop.
Save OliverJAsh/1a931b45b362e03f5f9ba7e5a17c5763 to your computer and use it in GitHub Desktop.
type RemoteData<FailureData, SuccessData> =
| NotAsked
| Loading
| Failure<FailureData>
| Success<SuccessData>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment