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 | |
---|
1 | import { Paths as OPaths } from '../Object/Paths';
|
---|
2 | import { ObjectOf } from './ObjectOf';
|
---|
3 | import { 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 | */
|
---|
13 | export declare type Paths<L extends List> = OPaths<ObjectOf<L>>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.