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.
9 lines
470 B
9 lines
470 B
2 years ago
|
import type { CircleMarker as LeafletCircleMarker, CircleMarkerOptions, LatLngExpression } from 'leaflet';
|
||
|
import type { ReactNode } from 'react';
|
||
|
import type { PathProps } from './path.js';
|
||
|
export interface CircleMarkerProps extends CircleMarkerOptions, PathProps {
|
||
|
center: LatLngExpression;
|
||
|
children?: ReactNode;
|
||
|
}
|
||
|
export declare function updateCircle<P extends CircleMarkerProps = CircleMarkerProps>(layer: LeafletCircleMarker, props: P, prevProps: P): void;
|