Skip to content

Instantly share code, notes, and snippets.

@wufe
Created August 29, 2018 07:57
Show Gist options
  • Save wufe/3f91b3e6d5c9bea25fe3555131a28c40 to your computer and use it in GitHub Desktop.
Save wufe/3f91b3e6d5c9bea25fe3555131a28c40 to your computer and use it in GitHub Desktop.
TS Recursive partial
type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]> };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment