cyclic-dependency-fixer
Version:
AI-powered tool to detect and fix circular dependencies in JavaScript/TypeScript projects. Features intelligent refactoring with Claude/GPT-4, codebase pattern learning, and context-aware fix recommendations
10 lines • 363 B
TypeScript
import { IAIProvider, AIProviderType } from '../../domain/interfaces/IAIProvider';
export interface AIConfig {
readonly provider: AIProviderType;
readonly apiKey?: string;
}
export declare class AIProviderFactory {
static create(config: AIConfig): IAIProvider;
static createFromEnv(): IAIProvider;
}
//# sourceMappingURL=AIProviderFactory.d.ts.map