UNPKG

donobu

Version:

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

10 lines 287 B
/** * A definition of a user-defined tool to use for a DonobuFlow. */ export type CustomTool = { readonly name: string; readonly description: string; readonly inputSchema: Record<string, unknown>; readonly javascript: string; }; //# sourceMappingURL=CustomTool.d.ts.map