MCPcopy
hub / github.com/dittofeed/dittofeed / HeritageMapEntry

Interface HeritageMapEntry

packages/isomorphic-lib/src/journeys.ts:284–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

282}
283
284export 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
295export type HeritageMap = Map<
296 // id of node for which heritage entry applies

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected