clinic-cms
Version:
Svelte components based on Skeleton UI toolkit for the frontend of an outpatient clinic CMS.
9 lines (8 loc) • 309 B
TypeScript
import { MapLibre } from 'svelte-maplibre';
import type { MapData } from '../interfaces/mapData.interface.ts';
type $$ComponentProps = {
data: MapData[];
};
declare const MapLibre: import("svelte").Component<$$ComponentProps, {}, "">;
type MapLibre = ReturnType<typeof MapLibre>;
export default MapLibre;