Resolves the type at the end of a path tuple P walked into T.
P
T
Useful when you want to derive the return type of a getIn call without calling the function itself.
Root object type.
Tuple of string / number keys describing the path.
type Result = DeepGet<typeof data, ['user', 'profile', 'name']>;// string Copy
type Result = DeepGet<typeof data, ['user', 'profile', 'name']>;// string
Resolves the type at the end of a path tuple
Pwalked intoT.Useful when you want to derive the return type of a getIn call without calling the function itself.