insite-mcp
Version:
MCP server for browser automation with 52 tools using Playwright
17 lines • 401 B
JavaScript
/**
* Type definitions for Browser MCP Server
*/
/**
* Custom error class for browser automation operations
*/
export class BrowserAutomationError extends Error {
type;
details;
constructor(type, message, details) {
super(message);
this.type = type;
this.details = details;
this.name = 'BrowserAutomationError';
}
}
//# sourceMappingURL=types.js.map