Created
August 31, 2018 11:00
-
-
Save stackdumper/46c76586e3cbffea706ee7d12eef8a4a to your computer and use it in GitHub Desktop.
Unwrap promise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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