UNPKG

810 BTypeScriptView Raw
1import { Observable } from '../Observable';
2import { ObservableInput } from '../types';
3/**
4 * Collects all of the inner sources from source observable. Then, once the
5 * source completes, joins the values using the given static.
6 *
7 * This is used for {@link combineLatestAll} and {@link zipAll} which both have the
8 * same behavior of collecting all inner observables, then operating on them.
9 *
10 * @param joinFn The type of static join to apply to the sources collected
11 * @param project The projection function to apply to the values, if any
12 */
13export declare function joinAllInternals<T, R>(joinFn: (sources: ObservableInput<T>[]) => Observable<T>, project?: (...args: any[]) => R): import("../types").UnaryFunction<Observable<ObservableInput<T>>, unknown>;
14//# sourceMappingURL=joinAllInternals.d.ts.map
\No newline at end of file