7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { Feature, Point, Coord } from "@turf/helpers";
|
|
|
|
/**
|
|
* http://turfjs.org/docs/#midpoint
|
|
*/
|
|
export default function midpoint(point1: Coord, point2: Coord): Feature<Point>;
|