1 | /// <reference types="node" />
|
2 | import { Transform } from 'stream';
|
3 | /**
|
4 | * Push an array of items into a Transform stream.
|
5 | * @param array The array you want to push to the stream.
|
6 | * @param stream The Transform stream into which array items are pushed.
|
7 | */
|
8 | export declare function split(array: Array<{}>, stream: Transform): Promise<boolean>;
|