UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 464 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { FlattenConcurrentSelector } from '../../asynciterable/operators/_flatten.js'; /** * @ignore */ export declare function concatMapProto<T, R>(this: AsyncIterableX<T>, selector: FlattenConcurrentSelector<T, R>, thisArg?: any): AsyncIterableX<R>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { concatMap: typeof concatMapProto; } }