DeepGetType
The array or object to search in
The path to search for
Search for a value in an array or object
The value of the path
type Target = { a: { b: { c: string } } };type Path = 'a.b.c';type Value = DeepGetType<Target, Path>; // string Copy
type Target = { a: { b: { c: string } } };type Path = 'a.b.c';type Value = DeepGetType<Target, Path>; // string
DeepGetType