UNPKG

@bobmatnyc/ai-code-review

Version:

A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter

16 lines (15 loc) 678 B
/** * @fileoverview Formatter for architectural code reviews. * * This module enhances the output of architectural reviews by adding a list * of all files that were included in the review process. */ import { ReviewResult, FileInfo } from '../types/review'; /** * Format an architectural review to include the list of analyzed files * @param review The review result * @param outputFormat Output format (markdown or JSON) * @param files Array of file information objects that were analyzed * @returns The formatted review output */ export declare function formatArchitecturalReview(review: ReviewResult, outputFormat: 'markdown' | 'json', files: FileInfo[]): string;