MCPcopy Create free account
hub / github.com/delexw/claude-code-trace / ProjectNode

Interface ProjectNode

shared/projectTree.ts:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9// ---- ProjectNode ----
10
11export interface ProjectNode {
12 name: string;
13 key: string;
14 sessionCount: number;
15 hasOngoing: boolean;
16}
17
18export function buildProjectNodes(sessions: SessionInfo[]): ProjectNode[] {
19 const map = new Map<string, ProjectNode>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected