symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
14 lines • 396 B
TypeScript
export interface CallGraphNode {
symbol: string;
depth: number;
children: CallGraphNode[];
}
export interface CallGraphResult {
nodes: CallGraphNode[];
entryPoint: string;
targetSymbol: string;
}
export declare class CallGraphAnalyzer {
static analyze(fromSymbol: string, toSymbol: string): Promise<CallGraphResult>;
}
//# sourceMappingURL=call-graph-analyzer.d.ts.map