```typescript 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?
Expected behaviour IMO would be
string | "${string}.name" | "${string}.age". Is this possible?