UNPKG

react-naver-maps

Version:

React Navermaps API integration for modern development.

11 lines (8 loc) 411 B
import { ReactElement } from 'react'; import { ClientOptions } from './types/client.js'; declare function loadNavermapsScript(options: ClientOptions): Promise<typeof naver.maps>; declare type Props = ClientOptions & { children: () => ReactElement; }; declare function LoadNavermapsScript({ children: Children, ...options }: Props): JSX.Element | null; export { LoadNavermapsScript, loadNavermapsScript };