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