UNPKG

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