mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-05 09:00:12 +08:00
8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
import toArray = require('stream-to-array');
|
|
|
|
var rs: NodeJS.ReadableStream;
|
|
|
|
toArray(rs, (err, arr) => {
|
|
|
|
});
|