UNPKG

380 BTypeScriptView Raw
1import { type LayerProps } from '@react-leaflet/core';
2import { TileLayer, type WMSOptions, type WMSParams } from 'leaflet';
3export interface WMSTileLayerProps extends WMSOptions, LayerProps {
4 params?: WMSParams;
5 url: string;
6}
7export declare const WMSTileLayer: import("react").ForwardRefExoticComponent<WMSTileLayerProps & import("react").RefAttributes<TileLayer.WMS>>;