CommunitySolidServer/external-types/streamifyArray.d.ts
2020-06-17 10:10:32 +02:00

7 lines
153 B
TypeScript

declare module 'streamify-array' {
import { Readable } from 'stream';
function streamifyArray(input: any[]): Readable;
export = streamifyArray;
}