@h4wldev/react-naver-maps
Version:
React Navermaps API integration for modern development.
11 lines (8 loc) • 347 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { ClientOptions } from './types/client.js';
type Props = ClientOptions & {
children?: ReactNode;
};
declare function NavermapsProvider({ children, ...clientOptions }: Props): react_jsx_runtime.JSX.Element;
export { NavermapsProvider, Props };