UNPKG

donobu

Version:

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

15 lines 427 B
import { BrowserStorageState } from './BrowserStorageState'; /** * Specifies how to reference a flow from which to restore browser state. */ export type BrowserStateReference = { readonly type: 'id'; readonly value: string; } | { readonly type: 'name'; readonly value: string; } | { readonly type: 'json'; readonly value: BrowserStorageState; }; //# sourceMappingURL=BrowserStateFlowReference.d.ts.map