UNPKG

354 BTypeScriptView Raw
1import { Path as OPath } from '../Object/Path';
2import { Key } from '../Any/Key';
3import { List } from './List';
4/**
5 * Get in `L` the type of nested properties
6 * @param L to be inspected
7 * @param Path to be followed
8 * @returns [[Any]]
9 * @example
10 * ```ts
11 * ```
12 */
13export declare type Path<L extends List, Path extends List<Key>> = OPath<L, Path>;