sveaflet
Version:
Sveaflet = Svelte + Leaflet
16 lines • 596 B
TypeScript
import { type Snippet } from 'svelte';
import { SVGOverlay } from 'leaflet';
import type { LatLngBounds, ImageOverlayOptions } from 'leaflet';
import type { HTMLAttributes } from 'svelte/elements';
type Props = {
bounds: LatLngBounds;
options?: ImageOverlayOptions;
instance?: SVGOverlay;
children?: Snippet;
} & HTMLAttributes<SVGElement> & {
[key: string]: unknown;
};
declare const SsvgOverlay: import("svelte").Component<Props, {}, "instance">;
type SsvgOverlay = ReturnType<typeof SsvgOverlay>;
export default SsvgOverlay;
//# sourceMappingURL=SSVGOverlay.svelte.d.ts.map