Skip to content

Instantly share code, notes, and snippets.

@Iamsheye
Created May 19, 2025 23:42
Show Gist options
  • Save Iamsheye/b7e167410e017a5d26a0db0ddd3f31c6 to your computer and use it in GitHub Desktop.
Save Iamsheye/b7e167410e017a5d26a0db0ddd3f31c6 to your computer and use it in GitHub Desktop.
Prettify Typescript 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