Get the type for a given dot notation path.
type ExampleValue = PathValue<{ job: { title: string; }}, 'job.title'>; Copy
type ExampleValue = PathValue<{ job: { title: string; }}, 'job.title'>;
Equals:
type ExampleValue = string; Copy
type ExampleValue = string;
Get the type for a given dot notation path.