Skip to content

Instantly share code, notes, and snippets.

@klemola
Last active May 16, 2019 10:34
Show Gist options
  • Save klemola/35898d915b0b26aef1cd5d6058a0e6a6 to your computer and use it in GitHub Desktop.
Save klemola/35898d915b0b26aef1cd5d6058a0e6a6 to your computer and use it in GitHub Desktop.
interface NotAsked {
type: "NotAsked";
}
interface Loading {
type: "Loading";
}
interface Success<T> {
type: "Success";
data: T;
}
interface Failure<E> {
type: "Failure";
error: E;
}
export type RemoteData<T, E> = NotAsked | Loading | Success<T> | Failure<E>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment