UNPKG

donobu

Version:

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

13 lines 556 B
/** * Base class for DonobuApi persistence implementations. * Provides reusable HTTP request helpers for communicating with the * Donobu cloud API. */ export declare abstract class DonobuApiClient { protected readonly baseUrl: string; protected readonly apiKey: string; protected constructor(baseUrl: string, apiKey: string); protected request(path: string, init: RequestInit): Promise<Response>; protected jsonRequest(path: string, method: string, body?: unknown): Promise<Response>; } //# sourceMappingURL=DonobuApiClient.d.ts.map