UNPKG

@web3-storage/pail

Version:
10 lines 322 B
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