@actyx/sdk
Version:
Actyx SDK
11 lines (10 loc) • 360 B
TypeScript
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>;