index.d.ts 312 B

123456789101112131415
  1. import { Feature, Coord, Polygon, Units, Properties } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#ellipse
  4. */
  5. export default function (
  6. center: Coord,
  7. xSemiAxis: number,
  8. ySemiAxis: number,
  9. options?: {
  10. steps?: number;
  11. units?: Units;
  12. properties?: Properties;
  13. }
  14. ): Feature<Polygon>;