From 971ce90b715ae5dadad88d47c9e423e0fd2f0c8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Fri, 15 May 2020 14:14:09 +0200 Subject: [PATCH] expose registrar connections map --- types/libp2p/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/libp2p/index.d.ts b/types/libp2p/index.d.ts index fb04616..7d0b489 100644 --- a/types/libp2p/index.d.ts +++ b/types/libp2p/index.d.ts @@ -93,6 +93,7 @@ declare class PeerStore { } declare class Registrar { + connections: Map; getConnection(peerInfo: PeerInfo): LibP2pConnection; handle: Function; register(topology: Object): string;