UNPKG

arela

Version:

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

14 lines 506 B
/** * Main Architecture Analyzer * Detects horizontal vs vertical architecture and generates recommendations */ import { ArchitectureReport, AnalyzeOptions } from "./types.js"; export interface ArchitectureAnalysisInput { paths: string[]; options?: AnalyzeOptions; } /** * Main function to analyze architecture across repositories */ export declare function analyzeArchitecture(paths: string[], options?: AnalyzeOptions): Promise<ArchitectureReport>; //# sourceMappingURL=architecture.d.ts.map