UNPKG

sveaflet

Version:

Sveaflet = Svelte + Leaflet

14 lines 464 B
import { GeoJSON } from 'leaflet'; import type { GeoJSONOptions } from 'leaflet'; import type { GeoJsonObject } from 'geojson'; type Props = { json?: GeoJsonObject | null; options?: GeoJSONOptions | null; instance?: GeoJSON; } & { [key: string]: unknown; }; declare const SGeoJson: import("svelte").Component<Props, {}, "instance">; type SGeoJson = ReturnType<typeof SGeoJson>; export default SGeoJson; //# sourceMappingURL=SGeoJSON.svelte.d.ts.map