UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

19 lines 605 B
/** * Graph Builder - Constructs dependency graph from analyzed files */ import { GraphDB } from "./storage.js"; import { FileAnalysis } from "./types.js"; /** * Build the dependency graph from analyzed files */ export declare function buildGraph(analyses: FileAnalysis[], repoPath: string, db: GraphDB, onProgress?: (message: string) => void): Promise<void>; /** * Get statistics about the built graph */ export declare function getGraphStats(db: GraphDB): { modules: number; components: number; services: number; apiEndpoints: number; }; //# sourceMappingURL=graph-builder.d.ts.map