Backstage
    Preparing search index...

    The app tree containing all AppNodes of the app.

    interface AppTree {
        nodes: ReadonlyMap<string, AppNode>;
        orphans: Iterable<AppNode>;
        root: AppNode;
    }
    Index

    Properties

    Properties

    nodes: ReadonlyMap<string, AppNode>

    A map of all nodes in the app by ID, including orphaned or disabled nodes

    orphans: Iterable<AppNode>

    A sequence of all nodes with a parent that is not reachable from the app root node

    root: AppNode

    The root node of the app