/** * Persistence Store * * JSONL-based persistence for runs and state. * * File structure: * {baseDir}/ * runs.jsonl - Run metadata * state.jsonl - State snapshots * logs/ * {executionId}.jsonl - Action log per run */ import type { PersistenceStore, PersistenceConfig } from "./types.ts"; /** * Create a file-based persistence store */ export declare function createPersistenceStore(config: PersistenceConfig): PersistenceStore; //# sourceMappingURL=store.d.ts.map