This commit is contained in:
2025-09-12 07:32:32 -07:00
parent 4d5fca6a5e
commit 49208df277
2978 changed files with 421237 additions and 394 deletions

39
node_modules/react-leaflet/lib/SVGOverlay.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { type MediaOverlayProps } from '@react-leaflet/core';
import { SVGOverlay as LeafletSVGOverlay } from 'leaflet';
import { type ReactNode } from 'react';
export interface SVGOverlayProps extends MediaOverlayProps {
attributes?: Record<string, string>;
children?: ReactNode;
}
export declare const useSVGOverlayElement: (props: SVGOverlayProps, context: Readonly<{
__version: number;
map: import("leaflet").Map;
layerContainer?: import("leaflet").LayerGroup<any> | import("@react-leaflet/core/lib/context").ControlledLayer | undefined;
layersControl?: import("leaflet").Control.Layers | undefined;
overlayContainer?: import("leaflet").Layer | undefined;
pane?: string | undefined;
}>) => import("react").MutableRefObject<Readonly<{
instance: LeafletSVGOverlay;
context: Readonly<{
__version: number;
map: import("leaflet").Map;
layerContainer?: import("leaflet").LayerGroup<any> | import("@react-leaflet/core/lib/context").ControlledLayer | undefined;
layersControl?: import("leaflet").Control.Layers | undefined;
overlayContainer?: import("leaflet").Layer | undefined;
pane?: string | undefined;
}>;
container?: any;
}>>;
export declare const useSVGOverlay: (props: SVGOverlayProps) => import("react").MutableRefObject<Readonly<{
instance: LeafletSVGOverlay;
context: Readonly<{
__version: number;
map: import("leaflet").Map;
layerContainer?: import("leaflet").LayerGroup<any> | import("@react-leaflet/core/lib/context").ControlledLayer | undefined;
layersControl?: import("leaflet").Control.Layers | undefined;
overlayContainer?: import("leaflet").Layer | undefined;
pane?: string | undefined;
}>;
container?: any;
}>>;
export declare const SVGOverlay: import("react").ForwardRefExoticComponent<SVGOverlayProps & import("react").RefAttributes<LeafletSVGOverlay>>;