MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / DirNode

Interface DirNode

graph-ui/src/components/Sidebar.tsx:12–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10}
11
12interface DirNode {
13 name: string;
14 fullPath: string;
15 children: Map<string, DirNode>;
16 nodeIds: Set<number>;
17 directNodes: GraphNode[];
18}
19
20function buildFileTree(nodes: GraphNode[]): DirNode {
21 const root: DirNode = { name: "/", fullPath: "", children: new Map(), nodeIds: new Set(), directNodes: [] };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected