You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
677 B
11 lines
677 B
2 years ago
|
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>>;
|