Skip to content

Instantly share code, notes, and snippets.

@MauricioRobayo
Created August 3, 2022 03:22
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 MauricioRobayo/3ba47c85612b32c5d78a61fd57dd108c to your computer and use it in GitHub Desktop.
Save MauricioRobayo/3ba47c85612b32c5d78a61fd57dd108c to your computer and use it in GitHub Desktop.
Infer returned type of a promise
type PromiseReturnType<T> = T extends Promise<infer R> ? R : T;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment