projects/netgrif-components-core/src/lib/view/tree-case-view/tree-component/model/case-tree-path.ts
A path in a case ref tree structure.
Attributes are stringIds of child cases. Their values are arrays containing the path from root to the child.
[childId: string]:
|
export interface CaseTreePath {
[childId: string]: Array<string>;
}