/// import { AsyncMapper } from '@naturalcycles/js-lib'; import { ReadableOptions } from 'stream'; import { ReadableTyped } from '../stream.model'; /** * Create Readable from Array. * Supports a `mapper` function (async) that you can use to e.g create a timer-emitting-readable. * * For simple cases use Readable.from(...) (Node.js 12+) */ export declare function readableFromArray(items: IN[], mapper?: AsyncMapper, opt?: ReadableOptions): ReadableTyped;