Skip to content

Instantly share code, notes, and snippets.

@colelawrence
Created February 24, 2024 01:25
Show Gist options
  • Save colelawrence/38b30d987d70d79954ee37ef2a2bfe84 to your computer and use it in GitHub Desktop.
Save colelawrence/38b30d987d70d79954ee37ef2a2bfe84 to your computer and use it in GitHub Desktop.
Improve preview of union types in autocomplete
/** Improve preview of union types in autocomplete. */
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