UNPKG

baconjs

Version:

A small functional reactive programming lib for JavaScript.

7 lines (6 loc) 279 B
import { Property } from "./observable"; import { EventStream } from "./observable"; /** @hidden */ export declare function startWithE<V>(src: EventStream<V>, seed: V): EventStream<V>; /** @hidden */ export declare function startWithP<V>(src: Property<V>, seed: V): Property<V>;