ts-toolbelt
Version:
TypeScript's largest utility library
14 lines (13 loc) • 359 B
TypeScript
import { Paths as OPaths } from '../Object/Paths';
import { ObjectOf } from './ObjectOf';
import { List } from './List';
/**
* Get all the possible paths of `L`
* (⚠️ this won't work with circular-refs)
* @param L to be inspected
* @returns [[String]][]
* @example
* ```ts
* ```
*/
export declare type Paths<L extends List> = OPaths<ObjectOf<L>>;