Socket
Socket
Sign inDemoInstall

libp2p-tcp

Package Overview
Dependencies
31
Maintainers
5
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.17.1 to 0.17.2

9

CHANGELOG.md

@@ -0,1 +1,10 @@

## [0.17.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.1...v0.17.2) (2021-09-03)
### Bug Fixes
* ts declaration export ([#150](https://github.com/libp2p/js-libp2p-tcp/issues/150)) ([d165fe5](https://github.com/libp2p/js-libp2p-tcp/commit/d165fe57960e2bb4a5324c372ef459c31dee1cf5))
## [0.17.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.0...v0.17.1) (2021-07-08)

@@ -2,0 +11,0 @@

17

dist/src/index.d.ts

@@ -1,8 +0,11 @@

declare const _exports: any;
export = _exports;
export type Multiaddr = import('multiaddr').Multiaddr;
export type Connection = import("libp2p-interfaces/src/connection/connection");
export type Upgrader = import('libp2p-interfaces/src/transport/types').Upgrader;
export type Listener = import('libp2p-interfaces/src/transport/types').Listener;
export type Socket = import('net').Socket;
export = TCPWithIs;
declare const TCPWithIs: any;
declare namespace TCPWithIs {
export { Multiaddr, Connection, Upgrader, Listener, Socket };
}
type Multiaddr = import('multiaddr').Multiaddr;
type Connection = import("libp2p-interfaces/src/connection/connection");
type Upgrader = import('libp2p-interfaces/src/transport/types').Upgrader;
type Listener = import('libp2p-interfaces/src/transport/types').Listener;
type Socket = import('net').Socket;
//# sourceMappingURL=index.d.ts.map
{
"name": "libp2p-tcp",
"version": "0.17.1",
"version": "0.17.2",
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",

@@ -44,3 +44,3 @@ "leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",

"@types/debug": "^4.1.5",
"aegir": "^33.2.0",
"aegir": "^35.0.3",
"it-pipe": "^1.1.0",

@@ -47,0 +47,0 @@ "libp2p-interfaces": "^1.0.0",

@@ -154,2 +154,4 @@ 'use strict'

module.exports = withIs(TCP, { className: 'TCP', symbolName: '@libp2p/js-libp2p-tcp/tcp' })
const TCPWithIs = withIs(TCP, { className: 'TCP', symbolName: '@libp2p/js-libp2p-tcp/tcp' })
exports = module.exports = TCPWithIs

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc