Spaces:
Sleeping
Sleeping
File size: 543 Bytes
be5030f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { DataType } from '../../type';
import { RecordBatch } from '../../recordbatch';
import { RecordBatchWriter } from '../../ipc/writer';
/** @ignore */
export declare function recordBatchWriterThroughDOMStream<T extends {
[key: string]: DataType;
} = any>(this: typeof RecordBatchWriter, writableStrategy?: QueuingStrategy<RecordBatch<T>> & {
autoDestroy: boolean;
}, readableStrategy?: {
highWaterMark?: number;
size?: any;
}): {
writable: WritableStream<RecordBatch<T>>;
readable: ReadableStream<Uint8Array>;
};
|