• Creates a new observable that:

    • acts like combineLatest for the input args observables
    • unlike combineLatest it starts the observables in a sequence, like concat
    • unlike concat, it does not wait for the previous one to complete, instead it starts the next observable when the previous one emits the first value

    Type Parameters

    • T

    Parameters

    • obsArray: Observable<T>[]

    Returns Observable<T[]>

Generated using TypeDoc