index.d.ts 320 B

123456789101112131415
  1. import { AllGeoJSON, Units } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#transform-translate
  4. */
  5. export default function transformTranslate<T extends AllGeoJSON>(
  6. geojson: T,
  7. distance: number,
  8. direction: number,
  9. options?: {
  10. units?: Units;
  11. zTranslation?: number;
  12. mutate?: boolean;
  13. }
  14. ): T;