UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

12 lines 503 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserInterruptException = void 0; const DonobuException_1 = require("./DonobuException"); class UserInterruptException extends DonobuException_1.DonobuException { constructor(userAction) { super(`User interrupt: ${JSON.stringify(userAction, null, 2)}`); this.userAction = userAction; } } exports.UserInterruptException = UserInterruptException; //# sourceMappingURL=UserInterruptException.js.map