| 13 | } |
| 14 | |
| 15 | interface PathEntry<T, Meta> { |
| 16 | node: T |
| 17 | parent: T | null |
| 18 | key: string | null |
| 19 | index: number | null |
| 20 | meta: Meta |
| 21 | } |
| 22 | |
| 23 | export type Path<T, Meta> = PathEntry<T, Meta>[] |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…