UNPKG

arela

Version:

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

34 lines 985 B
/** * Reporter Module * Formats flow analysis results for beautiful CLI output */ import { FlowAnalysisResult } from './analyzer.js'; /** * Display complete analysis report in CLI */ export declare function reportAnalysis(result: FlowAnalysisResult): void; /** * Display brief summary (one-liner per category) */ export declare function reportBriefSummary(result: FlowAnalysisResult): void; /** * Export results to JSON file */ export declare function exportJSON(result: FlowAnalysisResult, filePath: string): void; /** * Export results to Markdown file */ export declare function exportMarkdown(markdown: string, filePath: string): void; /** * Display spinner-style progress message */ export declare function showProgress(message: string): void; /** * Display success message */ export declare function showSuccess(message: string): void; /** * Display error message */ export declare function showError(message: string): void; //# sourceMappingURL=reporter.d.ts.map