mt-polygon-simplification/lib/turf-simplify/index.d.ts

14 lines
272 B
TypeScript
Raw Normal View History

2019-07-14 20:37:26 +02:00
import { AllGeoJSON } from '@turf/helpers'
/**
* http://turfjs.org/docs/#simplify
*/
export default function simplify<T extends AllGeoJSON>(
geojson: T,
options?: {
tolerance?: number,
highQuality?: boolean,
mutate?: boolean
}
): T;