Skip to content

Instantly share code, notes, and snippets.

@TorbjornHoltmon
Created February 22, 2023 09:14
Show Gist options
  • Select an option

  • Save TorbjornHoltmon/04ac0a6784f467053547f95655d5fb7a to your computer and use it in GitHub Desktop.

Select an option

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