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