You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Paths<Record<string, { a: number; b: number; }>>; resolves to never. It should instead use template literal types and resolve to `${string}` | `${string}.a` | `${string}.b`.
Currently,
Paths<Record<string, { a: number; b: number; }>>;resolves tonever. It should instead use template literal types and resolve to`${string}` | `${string}.a` | `${string}.b`.