UNPKG

arela

Version:

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

15 lines 439 B
export interface StructureIssue { type: "error" | "warning"; message: string; fix?: string; files?: string[]; } /** * Check project structure for common issues */ export declare function checkStructure(cwd: string): Promise<StructureIssue[]>; /** * Auto-fix structure issues */ export declare function fixStructure(cwd: string, issues: StructureIssue[]): Promise<void>; //# sourceMappingURL=structure-validator.d.ts.map