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

12 lines
316 B
TypeScript

/// <reference types="geojson" />
type Feature = GeoJSON.Feature<any>;
type Features = GeoJSON.FeatureCollection<any>;
type Point = GeoJSON.Feature<GeoJSON.Point>;
/**
* http://turfjs.org/docs/#center
*/
declare function center(features: Feature | Features): Point;
declare namespace center { }
export = center;