| 282 | } |
| 283 | |
| 284 | export interface HeritageMapEntry { |
| 285 | // ids of direct children nodes |
| 286 | children: Set<string>; |
| 287 | // ids of all N nested children of node |
| 288 | descendants: Set<string>; |
| 289 | // ids of direct parents of the node |
| 290 | parents: Set<string>; |
| 291 | // ids of all N nested parents of node |
| 292 | ancestors: Set<string>; |
| 293 | } |
| 294 | |
| 295 | export type HeritageMap = Map< |
| 296 | // id of node for which heritage entry applies |
nothing calls this directly
no outgoing calls
no test coverage detected