718f8abc62dcf62133fd5ab41d8f575b5e86678bfa2120c218f9df20d5b3afb8602aff9c4601a9ba922e0f7dbe6d1bffb192df6e0d178e166441b88ef6866e 810 B

1234567891011121314
  1. import { Observable } from '../Observable';
  2. import { 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. */
  13. export 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