declare module "@extra-iterable/map" { import type { mapFn } from "./_types"; /** * Updates values based on map function. * @param x an iterable * @param fm map function (v, i, x) */ declare function map(x: Iterable, fm: mapFn): IterableIterator; export = map; //# sourceMappingURL=map.d.ts.map}