How do I extract the type of a nested property? For example say I have this type:
type Example = {
nested: string, // how do I infer string here
other: string
}
Such that I can extract out 'string' from Example.nested?
I have type myType = Pick<Example, "nested">
and that provides { nested: string }
, but I want to infer the type of the property 'nested' (string, in this example) on that object.
You want to use a lookup type (also called an "indexed access type") which uses the square bracket syntax.
That is,
type myType = Example["nested"] // string
Hope that helps; good luck!
Link to code
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With