TypeScript: Indexed Access Types
2 December 2022 (Updated 2 December 2022)
In a nutshell
You can use indexed access types to look up the type of another type’s property. For example:
Here we access the type of the age
property of the Person
type using Person["age"]
.
Recipes
Use unions as an index
Use keyof
as an index
Use another type as an index
Use number
to access the type of an array’s elements
Here, we’ve managed to look up the type of the elements in MyArray
using the special number
index.
You can also combine number
with another indexed access to look up the type of a property of an array element:
Sources
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment