Type Alias: Path<T>
Path<
T> =string
Defined in: lens/types.ts:42
A path type that can be used to access nested properties.
Supports dot notation for nested object access.
Type Parameters
T
T
Example
type UserPath = Path<User>
// Can be: 'name' | 'email' | 'address.street' | 'address.city'