Typescript optional keys reference
7 March 2024 (Updated 7 March 2024)
The problem: Scenarios where optional keys are needed
Consider this UserRecord
:
This definition makes UserRecord
a type where all the keys (name
, email
, and age
) are required.
So this won’t work:
TypeScript complains with:

But what if we need a UserRecord
where some keys can be optional?
The solution: Mapped types
We can use mapped types:
Now, we can do something like:
And TypeScript is happy:
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment