types.d.ts 291 B

12345678
  1. import { FeatureCollection, Feature, GeometryObject } from "geojson";
  2. export type Intersection = [number, number];
  3. export default function sweeplineIntersections(
  4. geojson: FeatureCollection<GeometryObject> | Feature<GeometryObject>,
  5. ignoreSelfIntersections: boolean
  6. ): Intersection[];