Hierarchical arrangement of items and their dependencies.

interface IHierarchyElement {
    dependencies: IHierarchyElement[];
    id: string;
}

Properties

Properties

dependencies: IHierarchyElement[]

Items that this item depends on

id: string

Item id