Files
turftracker/frontend/node_modules/react-leaflet/lib/Marker.d.ts
2026-04-09 13:19:47 -05:00

9 lines
455 B
TypeScript

import { type EventedProps } from '@react-leaflet/core';
import { type LatLngExpression, Marker as LeafletMarker, type MarkerOptions } from 'leaflet';
import type { ReactNode } from 'react';
export interface MarkerProps extends MarkerOptions, EventedProps {
children?: ReactNode;
position: LatLngExpression;
}
export declare const Marker: import("react").ForwardRefExoticComponent<MarkerProps & import("react").RefAttributes<LeafletMarker<any>>>;