UNPKG

352 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function flatMapProto<TSource, TResult>(this: IterableX<TSource>, fn: (value: TSource) => Iterable<TResult>, thisArg?: any): IterableX<TResult>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 flatMap: typeof flatMapProto;
9 }
10}