0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
9 lines
412 B
TypeScript
9 lines
412 B
TypeScript
/// <reference types="react" />
|
|
import { type LayerProps } from '@react-leaflet/core';
|
|
import { TileLayer, type WMSOptions, type WMSParams } from 'leaflet';
|
|
export interface WMSTileLayerProps extends WMSOptions, LayerProps {
|
|
params?: WMSParams;
|
|
url: string;
|
|
}
|
|
export declare const WMSTileLayer: import("react").ForwardRefExoticComponent<WMSTileLayerProps & import("react").RefAttributes<TileLayer.WMS>>;
|