index.d.ts 241 B

123456789
  1. import { FeatureCollection, GeometryObject } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#sample
  4. */
  5. export default function sample<T extends GeometryObject>(
  6. features: FeatureCollection<T>,
  7. num: number
  8. ): FeatureCollection<T>;