import { Pipe } from './types'; /** * 和 compose 类似, 不过数据流为从左往右. compose(f1, f2) => f2(f1(...args)) * @param funcs 回调函数组 * @example * const f2 = (a: number) => a * a * const f1 = (a: number, b: number) => a * b * pipe(f1, f2)(2, 3) // 36 */ export declare const pipe: Pipe;