UNPKG

253 BTypeScriptView Raw
1import { OperatorAsyncFunction } from '../../interfaces';
2export declare function flatMap<TSource, TResult>(selector: (value: TSource) => AsyncIterable<TResult> | Promise<AsyncIterable<TResult>>, thisArg?: any): OperatorAsyncFunction<TSource, TResult>;