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

26 lines
769 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
// @ts-ignore
import PeerId from 'peer-id';
// @ts-ignore
import PeerInfo from 'peer-info';
declare module 'peer-book' {
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;
}