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

30 lines • 977 B
/** * Flutter Interaction Predictor * REAL implementation that predicts and executes interactions on Flutter web apps */ import { Page } from 'playwright'; import { UIStructure } from './flutter-structure-mapper.js'; export interface InteractionStrategy { method: string; confidence: number; execute: () => Promise<boolean>; } export declare class FlutterInteractionPredictor { /** * Generate real interaction strategies for a target element */ static generateStrategies(page: Page, target: string, structure: UIStructure): Promise<InteractionStrategy[]>; /** * Detect if the page changed after an interaction */ private static detectPageChange; /** * Execute strategies until one succeeds */ static executeStrategies(strategies: InteractionStrategy[]): Promise<{ success: boolean; method?: string; error?: string; }>; } //# sourceMappingURL=flutter-interaction-predictor.d.ts.map