sveaflet
Version:
Sveaflet = Svelte + Leaflet
11 lines • 366 B
TypeScript
import type { Control } from 'leaflet';
type Props = {
options?: Control.ZoomOptions;
instance?: Control.Zoom;
} & {
[key: string]: unknown;
};
declare const SControlZoom: import("svelte").Component<Props, {}, "instance">;
type SControlZoom = ReturnType<typeof SControlZoom>;
export default SControlZoom;
//# sourceMappingURL=SControlZoom.svelte.d.ts.map