UNPKG

616 BTypeScriptView Raw
1import { EventStream, EventStreamOptions } from "./observable";
2import Observable from "./observable";
3/** @hidden */
4export declare function concatE<V, V2>(left: EventStream<V>, right: Observable<V2>, options?: EventStreamOptions): EventStream<V | V2>;
5/**
6 Concatenates given array of EventStreams or Properties. Works by subscribing to the first source, and listeing to that
7 until it ends. Then repeatedly subscribes to the next source, until all sources have ended.
8
9 See [`concat`](#observable-concat)
10 */
11export declare function concatAll<V>(...streams_: (Observable<V> | Observable<V>[])[]): EventStream<V>;