@h4wldev/react-naver-maps
Version:
React Navermaps API integration for modern development.
16 lines (13 loc) • 399 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
type MapElementType = {
setMap(map: naver.maps.Map | null): void;
getMap(): naver.maps.Map | null;
};
type Props = {
element: MapElementType;
children?: ReactNode;
autoMount?: boolean;
};
declare function Overlay(props: Props): react_jsx_runtime.JSX.Element;
export { Overlay, Props };