UNPKG

ipfs-core

Version:

JavaScript implementation of the IPFS specification

12 lines 514 B
/** * @typedef {import('ipfs-core-types/src/swarm').AddrsResult} AddrsResult */ /** * @param {object} config * @param {import('../../types').NetworkService} config.network */ export function createAddrs({ network }: { network: import('../../types').NetworkService; }): (options?: import("ipfs-core-types").AbortOptions | undefined) => Promise<import("ipfs-core-types/src/swarm").AddrsResult[]>; export type AddrsResult = import('ipfs-core-types/src/swarm').AddrsResult; //# sourceMappingURL=addrs.d.ts.map