import { Index } from "."; export interface DBInterface { fetchEntry: (serializedUids: Uint8Array) => Promise; fetchChain: (serializedUids: Uint8Array) => Promise; upsertEntry: (serializedEntries: Uint8Array) => Promise; upsertChain: (serializedEntries: Uint8Array) => Promise; getEntryTableEntriesById: (uids: Uint8Array[]) => Promise; getChainTableEntriesById: (uids: Uint8Array[]) => Promise; upsertEntryTableEntries: (entries: Index[]) => Promise; upsertChainTableEntries: (entries: Index[]) => Promise; } //# sourceMappingURL=dbInterface.d.ts.map