UNPKG

348 BTypeScriptView Raw
1import { TransformTyped } from '../stream.model';
2/**
3 * Transform that does nothing (pass the data through).
4 * Can be used e.g to convert "not-valid" stream (e.g one that `transformMap` is producing)
5 * into a "valid" stream (that implements async-iteration interface).
6 */
7export declare function transformNoOp<T = any>(): TransformTyped<T, T>;