TypeScript: keyof reference
2 December 2022 (Updated 7 April 2024)
On this page
In a nutshell
TypeScript’s keyof
operator takes an object type and produces a string or numeric literal union of its keys.
This means you can declare a type like:
Then use keyof
to create another derived type:
DerivedType
will now be equal to the numeric literal union of SomeObjectType
‘s keys 1 | 2
(1
and 2
are the keys of SomeObjectType
). So if you do something like:
You’ll get the error:
Because 3
is not assignable to 1 | 2
.
But if you do:
Then all is good because 1
is assignable to 1 | 2
.
Try this example in the TS Playground.
Sources
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment