wrongmove/immoweb/node_modules/@turf/distance/index.d.ts
2025-05-26 19:41:36 +00:00

10 lines
250 B
TypeScript

/// <reference types="geojson" />
type Point = GeoJSON.Feature<GeoJSON.Point>;
/**
* http://turfjs.org/docs/#distance
*/
declare function distance(from: Point, to: Point, units?: string): number;
declare namespace distance { }
export = distance;