Created
August 29, 2018 07:57
-
-
Save wufe/3f91b3e6d5c9bea25fe3555131a28c40 to your computer and use it in GitHub Desktop.
TS Recursive partial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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