rambdax
Version:
Extended version of Rambda - a lightweight, faster alternative to Ramda
16 lines (14 loc) • 319 B
text/typescript
import {Path as OPath} from '../Object/Path'
import {Key} from '../Any/Key'
import {List} from './List'
/**
Get in `L` the type of nested properties
@param L to be inspected
@param Path to be followed
@returns [[Any]]
@example
```ts
```
*/
export type Path<L extends List, Path extends List<Key>> =
OPath<L, Path>