apache-arrow
Version:
Apache Arrow columnar in-memory format
8 lines (7 loc) • 308 B
TypeScript
/// <reference types="node" />
import { Readable, ReadableOptions as ReadableOptions_ } from 'node:stream';
/** @ignore */
type ReadableOptions = ReadableOptions_;
/** @ignore */
export declare function toNodeStream<T>(source: Iterable<T> | AsyncIterable<T>, options?: ReadableOptions): Readable;
export {};