/** * Iterates a nested Map structure created by d3-array's group() function. * * Yields arrays that contain the compound key and the grouped data items. * * @param {Map} map The root * @param {any[]} [path] The path so far. * @returns {Generator<[any[], T]>} * @template T */ export default function iterateNestedMaps(map: Map, path?: any[]): Generator<[any[], T]>; //# sourceMappingURL=iterateNestedMaps.d.ts.map