UNPKG

donobu

Version:

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

16 lines 501 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NoOpControlPanelFactory = exports.NoOpControlPanel = void 0; class NoOpControlPanel { update(_data) { } popLatestUserAction() { return null; } close() { } } exports.NoOpControlPanel = NoOpControlPanel; const NoOpControlPanelFactory = async (_flowId) => { return new NoOpControlPanel(); }; exports.NoOpControlPanelFactory = NoOpControlPanelFactory; //# sourceMappingURL=ControlPanel.js.map