change import to type only

This commit is contained in:
wjtje 2023-02-03 15:23:35 +01:00 committed by Pieter Vander Vennet
parent 8743fa6192
commit 0d8a3f1a58

View file

@ -7,7 +7,7 @@
import { GeoOperations } from "../../Logic/GeoOperations"
import Translations from "../i18n/Translations"
import ToSvelte from "../Base/ToSvelte.svelte"
import { Feature, Geometry, GeometryCollection } from "@turf/turf"
import type { Feature, Geometry, GeometryCollection } from "@turf/turf"
export let locationControl: Store<{ lat: number; lon: number }>
const tileToFetch: Store<string> = locationControl.mapD((l) => {