We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Objects.AllPaths
never
type MyDictionary = { [key: string]: { name: string; age: number; }; }; export type Paths = Call<Objects.AllPaths, MyDictionary>; // never
Expected behaviour IMO would be string | "${string}.name" | "${string}.age". Is this possible?
string | "${string}.name" | "${string}.age"