@web3-storage/pail
Version:
DAG based key value store.
10 lines • 322 B
TypeScript
import { Link, BlockView } from 'multiformats';
export { BlockFetcher } from '../api.js';
export type EventLink<T> = Link<EventView<T>>;
export interface EventView<T> {
parents: Array<EventLink<T>>;
data: T;
}
export interface EventBlockView<T> extends BlockView<EventView<T>> {
}
//# sourceMappingURL=api.d.ts.map