donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
13 lines • 621 B
TypeScript
import { FlowsPersistence } from './FlowsPersistence';
import { FlowsPersistenceFactory } from './FlowsPersistenceFactory';
/**
* An implementation of FlowsPersistenceFactory that always returns the same
* persistence layers given at construction time.
*/
export declare class FlowsPersistenceFactoryPreset implements FlowsPersistenceFactory {
private readonly persistenceLayers;
constructor(persistenceLayers: FlowsPersistence[]);
createPersistenceLayer(): Promise<FlowsPersistence>;
createPersistenceLayers(): Promise<FlowsPersistence[]>;
}
//# sourceMappingURL=FlowsPersistenceFactoryPreset.d.ts.map