Skip to content

Instantly share code, notes, and snippets.

@vivainio
Created May 20, 2020 15:09
Show Gist options
  • Save vivainio/1868b7e24a7fe2b6721ffee21b378408 to your computer and use it in GitHub Desktop.
Save vivainio/1868b7e24a7fe2b6721ffee21b378408 to your computer and use it in GitHub Desktop.
export type ResultOrErr<T> =
| {
err: undefined;
data: T;
}
| {
err: Error;
data: undefined;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment