Last active
May 16, 2025 16:09
-
-
Save David200197/8c266da3a6ccbfda76c46827ee2e9ad0 to your computer and use it in GitHub Desktop.
Prettify
This file contains hidden or 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
| // Force type expansion so they are displayed flat and readable in the editor. | |
| export 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