UNPKG

ipfs-unixfs-importer

Version:

JavaScript implementation of the UnixFs importer used by IPFS

9 lines 279 B
import type { Chunker } from './index.js'; export interface RabinOptions { minChunkSize?: number; maxChunkSize?: number; avgChunkSize?: number; window?: number; } export declare const rabin: (options?: RabinOptions) => Chunker; //# sourceMappingURL=rabin.d.ts.map