mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 21:47:35 +00:00
11 lines
144 B
TypeScript
11 lines
144 B
TypeScript
|
|
/// <reference types="node" />
|
|
|
|
import toArray = require('stream-to-array');
|
|
|
|
var rs: NodeJS.ReadableStream;
|
|
|
|
toArray(rs, (err, arr) => {
|
|
|
|
});
|