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