@actyx/sdk
Version:
Actyx SDK
8 lines (7 loc) • 517 B
TypeScript
import { EventFns } from '../event-fns';
import { SnapshotStore } from '../snapshotStore';
import { ActyxEvent, NodeId } from '../types';
import { EventStore } from './eventStore';
export declare const _ordByTimestamp: import("fp-ts/lib/Ord").Ord<ActyxEvent<unknown>>;
export declare const _ordByKey: import("fp-ts/lib/Ord").Ord<ActyxEvent<unknown>>;
export declare const EventFnsFromEventStoreV2: (nodeId: NodeId, eventStore: EventStore, snapshotStore: SnapshotStore, currentActyxVersion: () => string) => EventFns;