UNPKG

@dstanesc/o-o-o-o-o-o-o

Version:

O-O-O-O-O-O-O is a collection of content addressed persistent data structures

9 lines (6 loc) 220 B
import { IndexedValue, Link } from './types' interface IndexStore { indexCreate: (values: IndexedValue[]) => Promise<Link> indexSearch: (link: Link, value: any) => Promise<IndexedValue> } export { IndexStore }