UNPKG

318 BTypeScriptView Raw
1import "./filter";
2import "./mapend";
3import "./sample";
4import "./scan";
5import Observable from "./observable";
6import { Accumulator } from "./scan";
7import { Property } from "./observable";
8/** @hidden */
9export default function fold<In, Out>(src: Observable<In>, seed: Out, f: Accumulator<In, Out>): Property<Out>;