donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
7 lines • 327 B
TypeScript
import { DonobuException } from './DonobuException';
/** This exception is thrown when a particular tool call is not found. */
export declare class ToolCallNotFoundException extends DonobuException {
readonly toolCallId: string;
constructor(toolCallId: string);
}
//# sourceMappingURL=ToolCallNotFoundException.d.ts.map