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

22 lines
730 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 = require('peer-id');
import PeerInfo = require('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 = PeerBook;