UNPKG

ai-debug-local-mcp

Version:

🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh

16 lines • 457 B
/** * Enhanced Framework Detector for V2 * * Improves detection of hybrid frameworks like LiveView + Svelte */ import { Page } from 'playwright'; export interface EnhancedFrameworkInfo { primary: string; secondary?: string; hybrid?: boolean; features: string[]; } export declare class EnhancedFrameworkDetector { detectFramework(page: Page): Promise<EnhancedFrameworkInfo>; } //# sourceMappingURL=enhanced-framework-detector.d.ts.map