TypeScript: How to recursively map over object properties
13 August 2023 (Updated 14 August 2023)
On this page
Solution
How it works
We create the new type using mapped types by mapping over the keys of T
with [P in keyof T]
.
When determining the value of the key, we check if it’s a primitive type:
- If it is a primitive, we extract its type with
T[P]
. - If it’s not a primitive (i.e., it’s an object type), we recursively call the
DeepReadonly
generic again and pass the current property to it (DeepReadonly<T[P]>
to extract the type of each property.
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment