This commit is contained in:
2025-09-11 07:45:25 -07:00
parent ca8798848e
commit 955946e79d
2873 changed files with 299107 additions and 183282 deletions

10
node_modules/@react-leaflet/core/lib/layer.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import type { InteractiveLayerOptions, Layer, LayerOptions } from 'leaflet';
import { type LeafletContextInterface } from './context.js';
import type { LeafletElement, ElementHook } from './element.js';
import { type EventedProps } from './events.js';
export interface LayerProps extends EventedProps, LayerOptions {
}
export interface InteractiveLayerProps extends LayerProps, InteractiveLayerOptions {
}
export declare function useLayerLifecycle(element: LeafletElement<Layer>, context: LeafletContextInterface): void;
export declare function createLayerHook<E extends Layer, P extends LayerProps>(useElement: ElementHook<E, P>): (props: P) => ReturnType<ElementHook<E, P>>;