Created
January 12, 2021 21:24
-
-
Save Jtosbornex/6ae2971fb08832da39f93063670ce539 to your computer and use it in GitHub Desktop.
Typescript resolve promise utility type
This file contains 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 Unpromise<T extends Promise<any>> = T extends Promise<infer U> ? U : never; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment