UNPKG

code-auditor-mcp

Version:

Multi-language code quality auditor with MCP server - Analyze TypeScript, JavaScript, and Go code for SOLID principles, DRY violations, security patterns, and more

20 lines 605 B
/** * Compatibility layer for Schema Analyzer * Ensures the new universal analyzer produces similar results to the legacy one */ import type { AnalyzerFunction } from '../types.js'; /** * Legacy-compatible schema analyzer function * This wraps the new UniversalSchemaAnalyzer to maintain API compatibility */ export declare const analyzeSchema: AnalyzerFunction; /** * Analyzer definition for registration */ export declare const schemaAnalyzer: { name: string; description: string; category: string; analyze: AnalyzerFunction; }; //# sourceMappingURL=schemaAnalyzerCompat.d.ts.map