UNPKG

359 BTypeScriptView Raw
1import { Paths as OPaths } from '../Object/Paths';
2import { ObjectOf } from './ObjectOf';
3import { List } from './List';
4/**
5 * Get all the possible paths of `L`
6 * (⚠️ this won't work with circular-refs)
7 * @param L to be inspected
8 * @returns [[String]][]
9 * @example
10 * ```ts
11 * ```
12 */
13export declare type Paths<L extends List> = OPaths<ObjectOf<L>>;