UNPKG

donobu

Version:

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

10 lines 389 B
import { DonobuException } from './DonobuException'; /** * This exception is thrown if a particular flow is attempted to be deleted, but the flow is not in * a completed state. */ export declare class CannotDeleteRunningFlowException extends DonobuException { readonly flowId: string; constructor(flowId: string); } //# sourceMappingURL=CannotDeleteRunningFlowException.d.ts.map