Get the valid keys and dot notations for a given Type.
Type
type ExampleNotation = Path<{ job: { title: string; }}>; Copy
type ExampleNotation = Path<{ job: { title: string; }}>;
Equals:
type ExampleNotation = "job" | "job.title"; Copy
type ExampleNotation = "job" | "job.title";
Get the valid keys and dot notations for a given
Type.