11 lines
394 B
TypeScript
Raw Normal View History

2018-06-21 14:38:41 +02:00
// Type definitions for interface-connection 0.3.2
// Project: https://github.com/libp2p/interface-connection
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
2018-06-24 10:16:29 +02:00
/// <reference types="../peer-info"/>
2018-06-21 14:38:41 +02:00
2018-06-24 10:16:29 +02:00
declare interface LibP2pConnection {
2018-06-21 14:38:41 +02:00
getPeerInfo (cb: (error: Error | null, peerInfo?: PeerInfo) => any): void;
}