Created
March 14, 2022 04:42
-
-
Save vnphanquang/78039077ff480c62603846f7d22e1f3c to your computer and use it in GitHub Desktop.
This file contains 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 DeepObject<T> = { | |
[key: string]: T | DeepObject<T>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment