all these changes

This commit is contained in:
Jake Kasper
2026-04-09 13:19:47 -05:00
parent e83a51a051
commit 65315f36d1
39102 changed files with 7932979 additions and 567 deletions

27
frontend/node_modules/@turf/combine/dist/js/index.d.ts generated vendored Executable file
View File

@@ -0,0 +1,27 @@
import { MultiLineString, MultiPoint, MultiPolygon, Properties } from "@turf/helpers";
import { Point, LineString, Polygon, FeatureCollection } from "@turf/helpers";
/**
* Combines a {@link FeatureCollection} of {@link Point}, {@link LineString}, or {@link Polygon} features
* into {@link MultiPoint}, {@link MultiLineString}, or {@link MultiPolygon} features.
*
* @name combine
* @param {FeatureCollection<Point|LineString|Polygon>} fc a FeatureCollection of any type
* @returns {FeatureCollection<MultiPoint|MultiLineString|MultiPolygon>} a FeatureCollection of corresponding type to input
* @example
* var fc = turf.featureCollection([
* turf.point([19.026432, 47.49134]),
* turf.point([19.074497, 47.509548])
* ]);
*
* var combined = turf.combine(fc);
*
* //addToMap
* var addToMap = [combined]
*/
declare function combine(fc: FeatureCollection<Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon>): FeatureCollection<{
type: "MultiPoint" | "MultiLineString" | "MultiPolygon";
coordinates: number[][] | number[][][] | number[][][][];
}, {
collectedProperties: Properties[];
}>;
export default combine;