mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +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
|