UNPKG

@bobmatnyc/ai-code-review

Version:

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

20 lines (19 loc) 598 B
/** * @fileoverview Strategy factory for creating review strategies. * * This module provides a factory for creating the appropriate review strategy * based on the review options. */ import { ReviewOptions } from '../types/review'; import { IReviewStrategy } from './ReviewStrategy'; /** * Factory for creating review strategies */ export declare class StrategyFactory { /** * Create a review strategy based on options * @param options Review options * @returns The appropriate review strategy */ static createStrategy(options: ReviewOptions): IReviewStrategy; }