source: node_modules/ts-toolbelt/out/List/Paths.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 359 bytes
Line 
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>>;
Note: See TracBrowser for help on using the repository browser.