arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
10 lines • 430 B
TypeScript
/**
* Universal Language Analyzer - Supports TypeScript, JavaScript, Python, Go, Rust, etc.
* Uses regex patterns for universal parsing across languages
*/
import { FileAnalysis, FileType } from "./types.js";
/**
* Analyze a file using universal regex-based parsing
*/
export declare function analyzeFileUniversal(filePath: string, fileType?: FileType): Promise<FileAnalysis>;
//# sourceMappingURL=universal-analyzer.d.ts.map