DefinitelyTyped/types/from/from-tests.ts
2017-03-24 14:27:52 -07:00

10 lines
157 B
TypeScript

import from = require('from');
var rs: NodeJS.ReadableStream;
rs = from([]);
rs = from(function (count: number, next: () => any) {
this.emit('end');
});