Created
February 14, 2023 15:26
-
-
Save tonyonodi/d3627a7d5cb9b26d0cac22a5453f0634 to your computer and use it in GitHub Desktop.
Prettify generic
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
// from this tweet https://twitter.com/mattpocockuk/status/1622730173446557697 | |
type Prettify<T> = { | |
[K in keyof T]: T[K] | |
} & {}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment