UNPKG

sveaflet

Version:

Sveaflet = Svelte + Leaflet

16 lines 494 B
import { TileLayer } from 'leaflet'; import type { WMSOptions } from 'leaflet'; type Props = { url: string; options?: WMSOptions; name?: string; checked?: boolean; instance?: TileLayer; layerType?: 'base' | 'overlay'; } & { [key: string]: unknown; }; declare const STileLayerWms: import("svelte").Component<Props, {}, "instance">; type STileLayerWms = ReturnType<typeof STileLayerWms>; export default STileLayerWms; //# sourceMappingURL=STileLayerWMS.svelte.d.ts.map