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