UNPKG

sveaflet

Version:

Sveaflet = Svelte + Leaflet

15 lines 472 B
import { type Snippet } from 'svelte'; import { Popup } from 'leaflet'; import type { LatLngExpression, PopupOptions } from 'leaflet'; type Props = { latLng?: LatLngExpression; options?: PopupOptions; instance?: Popup; children?: Snippet; } & { [key: string]: unknown; }; declare const SPopup: import("svelte").Component<Props, {}, "instance">; type SPopup = ReturnType<typeof SPopup>; export default SPopup; //# sourceMappingURL=SPopup.svelte.d.ts.map