svelte-local-gpx-viewer
Version:
Local-first GPX routes viewer. Svelte-based components. Useable in Svelte projects and standalone (vanilla JS).
8 lines (7 loc) • 310 B
TypeScript
import { type LocalGeoJSONRouteEntity } from './localDB';
interface Props {
geoJSONRoutes: Array<LocalGeoJSONRouteEntity>;
}
declare const MapLibreLocalRoutes: import("svelte").Component<Props, {}, "">;
type MapLibreLocalRoutes = ReturnType<typeof MapLibreLocalRoutes>;
export default MapLibreLocalRoutes;