mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module 'stream-to-array' {
|
|
function toArray(stream: NodeJS.ReadableStream, callback: (err: any, arr: any[]) => void): NodeJS.ReadWriteStream;
|
|
export = toArray;
|
|
}
|