sveaflet
Version:
Sveaflet = Svelte + Leaflet
15 lines • 528 B
TypeScript
import { type Snippet } from 'svelte';
import { Control } from 'leaflet';
import type { ControlOptions } from 'leaflet';
import type { HTMLAttributes } from 'svelte/elements';
type Props = {
options: ControlOptions;
instance?: Control;
children?: Snippet;
} & HTMLAttributes<HTMLDivElement> & {
[key: string]: unknown;
};
declare const SControl: import("svelte").Component<Props, {}, "instance">;
type SControl = ReturnType<typeof SControl>;
export default SControl;
//# sourceMappingURL=SControl.svelte.d.ts.map