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