DefinitelyTyped/types/stream-array/index.d.ts
2018-10-09 08:43:39 -07:00

12 lines
386 B
TypeScript

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