index.d.ts 180 B

123456
  1. import { Feature, Point, Coord } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#midpoint
  4. */
  5. export default function midpoint(point1: Coord, point2: Coord): Feature<Point>;