@libp2p/interface-connection-encrypter
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -22,7 +22,7 @@ import type { PeerId } from '@libp2p/interface-peer-id'; | ||
} | ||
export interface SecuredConnection<E> { | ||
export interface SecuredConnection<Extension = unknown> { | ||
conn: Duplex<Uint8Array>; | ||
remoteExtensions?: E; | ||
remoteExtensions?: Extension; | ||
remotePeer: PeerId; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@libp2p/interface-connection-encrypter", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Connection Encrypter interface for libp2p", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0 OR MIT", |
@@ -26,6 +26,6 @@ import type { PeerId } from '@libp2p/interface-peer-id' | ||
export interface SecuredConnection<E> { | ||
export interface SecuredConnection<Extension = unknown> { | ||
conn: Duplex<Uint8Array> | ||
remoteExtensions?: E | ||
remoteExtensions?: Extension | ||
remotePeer: PeerId | ||
} |
Sorry, the diff of this file is not supported yet
14958