DefinitelyTyped/types/stream-array/stream-array-tests.ts

7 lines
202 B
TypeScript
Raw Normal View History

2018-10-09 15:43:39 +00:00
import streamify = require('stream-array');
streamify(); // $ExpectError
streamify('abc'); // $ExpectError
streamify([]); // $ExpectType Readable
streamify([1, '2', { 3: 4 }]); // $ExpectType Readable