Socket
Socket
Sign inDemoInstall

minipass

Package Overview
Dependencies
0
Maintainers
7
Versions
94
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.0 to 6.0.1

26

index.d.ts

@@ -12,12 +12,20 @@ /// <reference types="node" />

export interface Writable extends EventEmitter {
end(): any
write(chunk: any, ...args: any[]): any
}
export type Writable =
| Minipass<any, any, any>
| NodeJS.WriteStream
| (NodeJS.WriteStream & { fd: number })
| (EventEmitter & {
end(): any
write(chunk: any, ...args: any[]): any
})
export interface Readable extends EventEmitter {
pause(): any
resume(): any
pipe(): any
}
export type Readable =
| Minipass<any, any, any>
| NodeJS.ReadStream
| (NodeJS.ReadStream & { fd: number })
| (EventEmitter & {
pause(): any
resume(): any
pipe(...destArgs: any[]): any
})

@@ -24,0 +32,0 @@ export type DualIterable<T> = Iterable<T> & AsyncIterable<T>

{
"name": "minipass",
"version": "6.0.0",
"version": "6.0.1",
"description": "minimal implementation of a PassThrough stream",

@@ -5,0 +5,0 @@ "main": "./index.js",

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