UNPKG

@naver-maps/react

Version:
10 lines 462 B
/// <reference types="navermaps" /> import { type HTMLAttributes, type PropsWithChildren } from "react"; interface Props extends HTMLAttributes<HTMLDivElement> { onLoaded?: (marker: naver.maps.Marker) => void; latitude: number; longitude: number; } export default function Marker({ onLoaded, latitude, longitude, children, ...props }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Marker.d.ts.map