Skip to content

Instantly share code, notes, and snippets.

@esamattis
Created March 12, 2021 15:18
Show Gist options
  • Save esamattis/abc55b3999d1eff7772e8c39475e0704 to your computer and use it in GitHub Desktop.
Save esamattis/abc55b3999d1eff7772e8c39475e0704 to your computer and use it in GitHub Desktop.
Unwraps the type so it's more readable in vscode tool tips
/**
* 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