UNPKG

278 BTypeScriptView Raw
1import { TransformOptions, TransformTyped } from '../stream.model';
2/**
3 * Will collect all stream results in the array (keeping it in memory) and emit in the end as one result.
4 */
5export declare function transformToArray<IN>(opt?: TransformOptions): TransformTyped<IN, IN[]>;