donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
10 lines • 489 B
TypeScript
import { FlowsPersistence } from './FlowsPersistence';
export interface FlowsPersistenceFactory {
/**
* Creates a new FlowsPersistence instance. Throws an error if no persistence layer is available.
*/
createPersistenceLayer(): Promise<FlowsPersistence>;
/** Returns a list of all valid persistence layers. Note that the returned list may be empty! */
createPersistenceLayers(): Promise<FlowsPersistence[]>;
}
//# sourceMappingURL=FlowsPersistenceFactory.d.ts.map