UNPKG

arela

Version:

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

19 lines 639 B
/** * File Scanner - Scans directories for TypeScript/JavaScript files */ /** * Scan a directory for TypeScript/JavaScript files */ export declare function scanDirectory(repoPath: string, options?: { ignore?: string[]; verbose?: boolean; }): Promise<string[]>; /** * Get line count of a file */ export declare function getLineCount(filePath: string): number; /** * Determine file type based on path and content */ export declare function determineFileType(filePath: string, content?: string): 'component' | 'service' | 'controller' | 'util' | 'hook' | 'type' | 'config' | 'other'; //# sourceMappingURL=file-scanner.d.ts.map