Created
November 11, 2021 04:46
-
-
Save basarat/1c2923f91643a16a90de638e76bce0ab 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 DeepReadonly<T> = { | |
readonly [P in keyof T] | |
: DeepReadonly<T[P]>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment