We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand
Would you be open to adding this type?
type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
It's useful for debugging types in an IDE.
The text was updated successfully, but these errors were encountered:
Isn't this just Simplify?
Simplify
Sorry, something went wrong.
Oops, missed that one and SimplifyDeep.
SimplifyDeep
Mention another alternative type name in the readme
7950542
#678
No branches or pull requests
Would you be open to adding this type?
It's useful for debugging types in an IDE.
Upvote & Fund
The text was updated successfully, but these errors were encountered: