Gathering detailed insights and metrics for @types/multistream
Gathering detailed insights and metrics for @types/multistream
Gathering detailed insights and metrics for @types/multistream
Gathering detailed insights and metrics for @types/multistream
The repository for high quality TypeScript type definitions.
npm install @types/multistream
Typescript
Module System
99.8
Supply Chain
70.3
Quality
75.5
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
19,555,439
Last Day
1,257
Last Week
44,217
Last Month
187,548
Last Year
3,295,623
NOASSERTION License
49,996 Stars
89,698 Commits
30,434 Forks
641 Watchers
6 Branches
9,957 Contributors
Updated on Jul 04, 2025
Latest Version
4.1.3
Package Id
@types/multistream@4.1.3
Unpacked Size
4.00 kB
Size
1.77 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
25.6%
1,257
Compared to previous day
Last Week
-3.5%
44,217
Compared to previous week
Last Month
-27.2%
187,548
Compared to previous month
Last Year
-29.6%
3,295,623
Compared to previous year
1
npm install --save @types/multistream
This package contains type definitions for multistream (https://github.com/feross/multistream).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/multistream.
1/// <reference types="node" /> 2 3import { Readable as ReadableStream, ReadableOptions, Stream } from "stream"; 4 5declare class MultiStream extends ReadableStream { 6 constructor(streams: MultiStream.Streams, opts?: ReadableOptions); 7} 8 9interface FactoryStreamCallback { 10 (err: Error | null, stream: null): void; 11 (err: null, stream: ReadableStream): void; 12} 13 14declare namespace MultiStream { 15 type LazyStream = () => Stream; 16 type FactoryStream = (cb: FactoryStreamCallback) => void; 17 type Streams = Array<LazyStream | ReadableStream> | FactoryStream; 18 19 function obj(streams: Streams): MultiStream; 20} 21 22export = MultiStream; 23
These definitions were written by mrmlnc, and mpvharmelen.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 25/29 approved changesets -- score normalized to 8
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More