symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
21 lines • 444 B
TypeScript
export interface CallNode {
symbol: string;
filePath: string;
line: number;
column: number;
}
export interface CallEdge {
from: CallNode;
to: CallNode;
type: 'direct' | 'indirect';
}
export interface CallPath {
nodes: CallNode[];
edges: CallEdge[];
}
export interface CallGraphResult {
paths: CallPath[];
entryPoints: CallNode[];
exitPoints: CallNode[];
}
//# sourceMappingURL=call-graph.d.ts.map