Skip to content

Instantly share code, notes, and snippets.

@klemola
Last active May 16, 2019 10:34
Show Gist options
  • Save klemola/d370aa5fc73b9c9452d8835af4105d12 to your computer and use it in GitHub Desktop.
Save klemola/d370aa5fc73b9c9452d8835af4105d12 to your computer and use it in GitHub Desktop.
type Data =
| {
type: "Loading";
}
| {
type: "Success";
data: User;
}
| {
type: "Failure";
error: Error;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment