// Type definitions for stream-array 1.1 // Project: https://github.com/mimetnet/node-stream-array // Definitions by: Tyler Murphy // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import { Readable } from 'stream'; declare function streamify(array: ReadonlyArray): Readable; export = streamify;