mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-12 22:36:10 +08: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;
|
|
}
|