Skip to content

Instantly share code, notes, and snippets.

@ssyrota
Created October 15, 2022 08:30
Show Gist options
  • Save ssyrota/2f0d8b1f2cc87888ec29ca83db3389c4 to your computer and use it in GitHub Desktop.
Save ssyrota/2f0d8b1f2cc87888ec29ca83db3389c4 to your computer and use it in GitHub Desktop.
export type FutureResE<T = never, U = Error> = [T] extends [never]
? Promise<U | null>
: Promise<[U, null] | [null, T]>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment