Created
March 12, 2021 15:18
-
-
Save esamattis/abc55b3999d1eff7772e8c39475e0704 to your computer and use it in GitHub Desktop.
Unwraps the type so it's more readable in vscode tool tips
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
/** | |
* Unwraps the type so it's more readable in vscode tool tips | |
* */ | |
export type Unwrap<T> = T extends object | |
? { | |
[P in keyof T]: Unwrap<T[P]>; | |
} | |
: T; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment