index.d.ts 293 B

12345678910111213141516
  1. import {
  2. Feature,
  3. FeatureCollection,
  4. Coord,
  5. Point,
  6. Polygon,
  7. MultiPolygon,
  8. } from "@turf/helpers";
  9. /**
  10. * http://turfjs.org/docs/#polygontangents
  11. */
  12. export default function <T extends Polygon | MultiPolygon>(
  13. point: Coord,
  14. polygon: Feature<T> | T
  15. ): FeatureCollection<Point>;