UNPKG

283 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function concatAllProto<T>(this: IterableX<Iterable<T>>): IterableX<T>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 concatAll: typeof concatAllProto;
9 }
10}