UNPKG

@toolkit-p2p/mesh-cache

Version:

Content-addressed mesh cache for toolkit-p2p

12 lines 490 B
/** * @toolkit-p2p/mesh-cache * * Content-addressed distributed cache for mesh networks * * @packageDocumentation */ export type { CID, Block, BlockMetadata, CacheStats, BlockRequest, BlockResponse, BlockAnnouncement, CacheMessage, } from './types.js'; export { MeshCache, type MeshCacheOpts } from './cache.js'; export { BlockStorage } from './storage.js'; export { generateCID, base58Encode, base58Decode, isValidCID, verifyCID } from './cid.js'; //# sourceMappingURL=index.d.ts.map