UNPKG

ipfs-core

Version:

JavaScript implementation of the IPFS specification

16 lines 717 B
/** * @param {object} config * @param {import('../types').NetworkService} config.network * @param {import('../types').Preload} config.preload * @param {import('./ipns').IPNSAPI} config.ipns * @param {import('ipfs-repo').IPFSRepo} config.repo * @param {import('../types').MfsPreload} config.mfsPreload */ export function createStop({ network, preload, ipns, repo, mfsPreload }: { network: import('../types').NetworkService; preload: import('../types').Preload; ipns: import('./ipns').IPNSAPI; repo: import('ipfs-repo').IPFSRepo; mfsPreload: import('../types').MfsPreload; }): (options?: import("ipfs-core-types").AbortOptions | undefined) => Promise<void>; //# sourceMappingURL=stop.d.ts.map