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

10 lines
285 B
TypeScript

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