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

42 lines • 1.85 kB
/** * Lazy-loaded third-party dependencies * Each dependency is loaded only when first needed */ import { LazyModule } from './lazy-loader.js'; import type { Browser, BrowserContext } from 'playwright'; export declare const lazyPlaywright: LazyModule<typeof import('playwright')>; export declare const lazyBrowser: { getBrowser: () => Promise<Browser>; getContext: () => Promise<BrowserContext>; releaseContext: (context: BrowserContext) => Promise<void>; cleanup: () => Promise<void>; getPlaywright: () => Promise<typeof import("playwright")>; }; export declare const lazyTidewave: LazyModule<any>; export declare const lazyNextJsEngine: LazyModule<any>; export declare const lazyFlutterEngine: LazyModule<any>; export declare const lazyPythonEngine: LazyModule<any>; export declare const lazyDatabaseEngine: LazyModule<any>; export declare const lazyRailsEngine: LazyModule<any>; export declare const lazyMetaFrameworkEngine: LazyModule<any>; export declare const lazyGraphQLEngine: LazyModule<any>; export declare const lazyTDDEngine: LazyModule<any>; export declare const lazyAITestEngine: LazyModule<any>; export declare const lazyEvolutionEngine: LazyModule<any>; export declare const lazyPerformanceProfiler: LazyModule<any>; export declare const lazyAuditEngine: LazyModule<any>; export declare const lazyVisualEngine: LazyModule<any>; export declare const lazyFaultInjectionEngine: LazyModule<any>; /** * Map of all lazy-loadable modules */ export declare const LAZY_MODULES: Record<string, LazyModule<any>>; /** * Load dependencies required for a specific tool */ export declare function loadToolDependencies(toolName: string): Promise<Map<string, any>>; /** * Cleanup all lazy-loaded resources */ export declare function cleanupLazyDependencies(): Promise<void>; //# sourceMappingURL=lazy-dependencies.d.ts.map