mycoder-agent
Version:
Agent module for mycoder - an AI-powered software development assistant
15 lines • 522 B
TypeScript
import { PageController } from './PageController.js';
export declare class BrowserAutomation {
private static instance;
private browserManager;
private constructor();
static getInstance(): BrowserAutomation;
createSession(headless?: boolean): Promise<{
sessionId: string;
pageController: PageController;
close: () => Promise<void>;
}>;
cleanup(): Promise<void>;
}
export declare const browserAutomation: BrowserAutomation;
//# sourceMappingURL=BrowserAutomation.d.ts.map