Spaces:
Sleeping
Sleeping
File size: 290 Bytes
be5030f |
1 2 3 4 5 6 7 8 |
/// <reference types="node" />
import { Readable } from 'stream';
/** @ignore */
declare type ReadableOptions = import('stream').ReadableOptions;
/** @ignore */
export declare function toNodeStream<T>(source: Iterable<T> | AsyncIterable<T>, options?: ReadableOptions): Readable;
export {};
|