| 15 | import { type ReactNode, useEffect } from 'react' |
| 16 | |
| 17 | export interface TooltipProps extends TooltipOptions, EventedProps { |
| 18 | children?: ReactNode |
| 19 | position?: LatLngExpression |
| 20 | } |
| 21 | |
| 22 | export const Tooltip = createOverlayComponent<LeafletTooltip, TooltipProps>( |
| 23 | function createTooltip(props, context) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…