ipfs-unixfs-importer
Version:
JavaScript implementation of the UnixFs importer used by IPFS
10 lines • 334 B
TypeScript
import type { FileLayout } from '../layout/index.js';
export interface TrickleOptions {
layerRepeat?: number;
maxChildrenPerNode?: number;
}
/**
* @see https://github.com/ipfs/specs/pull/57#issuecomment-265205384
*/
export declare function trickle(options?: TrickleOptions): FileLayout;
//# sourceMappingURL=trickle.d.ts.map