Installation
npm install --save @types/streamify-array
Summary
This package contains type definitions for streamify-array (https://github.com/rubensworks/streamify-array.js#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/streamify-array.
index.d.ts
/// <reference types="node" />
import { Readable } from "stream";
/**
* Converts an array into a Node readable stream.
* Elements get removed from the array when they are read from the stream.
*/
declare function streamifyArray(input: any[]): Readable;
export = streamifyArray;
Additional Details
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: @types/node
Credits
These definitions were written by Joachim Van Herwegen.