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

19
frontend/node_modules/geojson-rbush/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { BBox, Feature, FeatureCollection, Geometry, GeoJsonProperties } from 'geojson'
declare class RBush<G extends Geometry, P extends GeoJsonProperties> {
insert(feature: Feature<G, P>): RBush<G, P>;
load(features: FeatureCollection<G, P> | Feature<G, P>[]): RBush<G, P>;
remove(feature: Feature<G, P>, equals?: (a: Feature<G, P>, b: Feature<G, P>) => boolean): RBush<G, P>;
clear(): RBush<G, P>;
search(geojson: Feature<G, P> | FeatureCollection<G, P> | BBox): FeatureCollection<G, P>;
all(): FeatureCollection<any>;
collides(geosjon: Feature<G, P> | FeatureCollection<G, P> | BBox): boolean;
toJSON(): any;
fromJSON(data: any): RBush<G, P>;
}
/**
* https://github.com/mourner/rbush
*/
export default function rbush<G extends Geometry = Geometry, P = GeoJsonProperties>(maxEntries?: number): RBush<G, P>;