Skip to content

Instantly share code, notes, and snippets.

@stackdumper
Created August 31, 2018 11:00
Show Gist options
  • Save stackdumper/46c76586e3cbffea706ee7d12eef8a4a to your computer and use it in GitHub Desktop.
Save stackdumper/46c76586e3cbffea706ee7d12eef8a4a to your computer and use it in GitHub Desktop.
Unwrap promise
export type Resolved<T> = T extends Promise<infer U> ? U :
T extends (...args: any[]) => Promise<infer U> ? U :
T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment