UNPKG

arela

Version:

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

13 lines 380 B
/** * Static Analyzer - Parses TypeScript/JavaScript files using AST */ import { FileAnalysis, FileType } from "./types.js"; /** * Analyze a single file */ export declare function analyzeFile(filePath: string, fileType?: FileType): Promise<FileAnalysis>; /** * Clean up resources */ export declare function closeProject(): void; //# sourceMappingURL=static-analyzer.d.ts.map