UNPKG

309 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function mapProto<T, U>(this: IterableX<T>, fn: (value: T, index: number) => U, thisArg?: any): IterableX<U>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 map: typeof mapProto;
9 }
10}