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

Interface EdgeLinesProps

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

Source from the content-addressed store, hash-verified

4import { edgeIntensityScale } from "../lib/density";
5
6interface EdgeLinesProps {
7 nodes: GraphNode[];
8 edges: GraphEdge[];
9 highlightedIds: Set<number> | null;
10 opacity?: number;
11 /* User edge-brightness multiplier (see DisplaySettings). Layered on top of
12 * the automatic density scale. */
13 brightness?: number;
14 /* When set, edge.target is looked up in this array instead of `nodes`.
15 * Used for cross-galaxy edges where source lives in the primary graph
16 * and target lives in a linked project's offset-adjusted nodes. */
17 targetNodes?: GraphNode[];
18}
19
20function getClusterKey(fp?: string): string {
21 if (!fp) return "";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected