Skip to content

Instantly share code, notes, and snippets.

@YouMinTW
Last active August 18, 2021 06:40
Show Gist options
  • Save YouMinTW/857798bf5948443802ee62b8246e360d to your computer and use it in GitHub Desktop.
Save YouMinTW/857798bf5948443802ee62b8246e360d to your computer and use it in GitHub Desktop.
type Simplify<T> = T extends Record<string, any> ? { [K in keyof T]: Simplify<T[K]> } : T;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment