Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Created March 23, 2021 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eamonnboyle/c1427eb768aa4f3518091c9c10b32cc7 to your computer and use it in GitHub Desktop.
Save eamonnboyle/c1427eb768aa4f3518091c9c10b32cc7 to your computer and use it in GitHub Desktop.
Unwrapping Single Promise
type UnwrapPromise<T> = T extends Promise<infer U> ? U : T;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment