UNPKG

@actyx/sdk

Version:
11 lines (10 loc) 360 B
import { EventStore } from '../internal_common/eventStore'; import { SnapshotStore } from '../snapshotStore'; import { ActyxOpts } from '../types'; export declare type Ret = { eventStore: EventStore; close: () => void; sourceId: string; snapshotStore: SnapshotStore; }; export declare const mkV1eventStore: (axOpts: ActyxOpts) => Promise<Ret>;