mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 21:47:35 +00:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import streamify = require('stream-array');
|
|
|
|
streamify(); // $ExpectError
|
|
streamify('abc'); // $ExpectError
|
|
streamify([]); // $ExpectType Readable
|
|
streamify([1, '2', { 3: 4 }]); // $ExpectType Readable
|