DefinitelyTyped/stream-to-array/stream-to-array-tests.ts
2014-05-26 14:31:30 +02:00

11 lines
203 B
TypeScript

/// <reference path="./stream-to-array.d.ts" />
/// <reference path="../node/node.d.ts" />
import toArray = require('stream-to-array');
var rs: NodeJS.ReadableStream;
toArray(rs, (err, arr) => {
});