Skip to content

Instantly share code, notes, and snippets.

@TorbjornHoltmon
Created February 22, 2023 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TorbjornHoltmon/04ac0a6784f467053547f95655d5fb7a to your computer and use it in GitHub Desktop.
Save TorbjornHoltmon/04ac0a6784f467053547f95655d5fb7a to your computer and use it in GitHub Desktop.
pretty type
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