UNPKG

@naver-maps/react

Version:
11 lines 585 B
/// <reference types="navermaps" /> import { type PropsWithChildren, type HtmlHTMLAttributes } from "react"; import type { InstallOptions, Layers, MapOptions } from "types"; interface Props extends InstallOptions, HtmlHTMLAttributes<HTMLDivElement> { mapOptions?: MapOptions; initLayers?: Layers[]; onLoaded?: (map: naver.maps.Map) => void; } export default function Map({ clientId, category, subModules, initLayers, mapOptions, onLoaded, children, ...props }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Map.d.ts.map