• Returns the elements from the source observable sequence only after the function that returns a promise produces an element.

    Type Parameters

    • TSource

      The type of the elements in the source sequence.

    Parameters

    • other: ((signal?) => Promise<any>)

      A function which returns a promise that triggers propagation of elements of the source sequence.

        • (signal?): Promise<any>
        • Parameters

          • Optional signal: AbortSignal

          Returns Promise<any>

    Returns MonoTypeOperatorAsyncFunction<TSource>

    An async-iterable sequence containing the elements of the source sequence starting from the point the function that returns a promise triggered propagation.

Generated using TypeDoc