UNPKG

sveaflet

Version:

Sveaflet = Svelte + Leaflet

15 lines 517 B
import { type Snippet } from 'svelte'; import { Rectangle } from 'leaflet'; import type { LatLngBoundsExpression, PolylineOptions } from 'leaflet'; type Props = { bounds: LatLngBoundsExpression; options?: PolylineOptions; instance?: Rectangle; children?: Snippet; } & { [key: string]: unknown; }; declare const SRectangle: import("svelte").Component<Props, {}, "instance">; type SRectangle = ReturnType<typeof SRectangle>; export default SRectangle; //# sourceMappingURL=SRectangle.svelte.d.ts.map