Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@libp2p/interfaces

Package Overview
Dependencies
Maintainers
6
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@libp2p/interfaces - npm Package Compare versions

Comparing version 3.0.4 to 3.0.5

dist/index.min.js

2

dist/src/events.d.ts

@@ -7,3 +7,3 @@ export interface EventCallback<EventType> {

}
export declare type EventHandler<EventType> = EventCallback<EventType> | EventObject<EventType>;
export type EventHandler<EventType> = EventCallback<EventType> | EventObject<EventType>;
/**

@@ -10,0 +10,0 @@ * Adds types to the EventTarget class. Hopefully this won't be necessary forever.

export interface AbortOptions {
signal?: AbortSignal;
}
export declare type RecursivePartial<T> = {
export type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends Array<infer I> ? Array<RecursivePartial<I>> : T[P] extends (...args: any[]) => any ? T[P] : RecursivePartial<T[P]>;
};
//# sourceMappingURL=index.d.ts.map
{
"name": "@libp2p/interfaces",
"version": "3.0.4",
"version": "3.0.5",
"description": "Common code shared by the various libp2p interfaces",

@@ -42,3 +42,3 @@ "license": "Apache-2.0 OR MIT",

"src",
"dist/src",
"dist",
"!dist/test",

@@ -164,4 +164,7 @@ "!**/*.tsbuildinfo"

"devDependencies": {
"aegir": "^37.4.0"
"aegir": "^37.7.3"
},
"typedoc": {
"entryPoint": "./src/index.ts"
}
}

@@ -18,2 +18,3 @@ # @libp2p/interfaces <!-- omit in toc -->

- [Startable](#startable)
- [API Docs](#api-docs)
- [License](#license)

@@ -88,2 +89,6 @@ - [Contribute](#contribute)

## API Docs
- <https://libp2p.github.io/js-libp2p-interfaces>
## License

@@ -90,0 +95,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc