UNPKG

388 BTypeScriptView Raw
1/// <reference types="react" />
2import { LayerProps } from '@react-leaflet/core';
3import { TileLayer as LeafletTileLayer, TileLayerOptions } from 'leaflet';
4export interface TileLayerProps extends TileLayerOptions, LayerProps {
5 url: string;
6}
7export declare const TileLayer: import("react").ForwardRefExoticComponent<TileLayerProps & import("react").RefAttributes<LeafletTileLayer>>;