Skip to main content
Module

x/replicache/db/mod.ts

Realtime Sync for Any Backend Stack
Latest
File
export {Write, initDB, readIndexesForWrite} from './write';export { Read, readIndexesForRead, readCommit, readCommitForBTreeRead, readCommitForBTreeWrite, whenceHead, whenceHash, fromWhence, readFromDefaultHead,} from './read';export { DEFAULT_HEAD_NAME, Commit, fromChunk, newIndexChange, newLocal, newSnapshot, assertCommitData, fromHash as commitFromHash, fromHead as commitFromHead, localMutations, snapshotMetaParts, baseSnapshot, chain as commitChain,} from './commit';export {getRoot} from './root';export {decodeIndexKey, encodeIndexKey} from './index';export type {IndexKey} from './index';export {Visitor} from './visitor';export {BaseTransformer, Transformer} from './transformer';
export type { SnapshotMeta, LocalMeta, IndexChangeMeta, IndexRecord, CommitData, Meta,} from './commit';export type {ScanOptions} from './scan';export type {Whence} from './read';