1
0
mirror of https://github.com/fluencelabs/libp2p-ts synced 2025-03-17 02:30:49 +00:00
2018-06-21 13:43:06 +02:00

22 lines
724 B
TypeScript

// Type definitions for peer-book 0.8.0
// Project: https://github.com/libp2p/js-peer-book
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import PeerId from 'peer-id';
import PeerInfo from 'peer-info';
declare class PeerBook {
constructor ();
get (peer: PeerId | PeerInfo | string): PeerInfo;
getAll (): { [peerId: string]: PeerInfo };
getAllArray (): PeerInfo[];
getMultiaddrs (peer: PeerId | PeerInfo | string): string[];
has (peer: PeerId | PeerInfo | string): boolean;
put (peerInfo: PeerInfo, replace?: boolean): PeerInfo;
remove (peerInfo: PeerInfo, replace?: boolean): void;
}
export default PeerBook;