@mint-ui/map
Version:
- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported
9 lines (8 loc) • 370 B
TypeScript
import { PropsWithChildren } from "react";
import { MintMapController } from "../MintMapController";
interface MintMapProviderProps {
controller: MintMapController;
}
export declare function MintMapProvider({ controller, children }: PropsWithChildren<MintMapProviderProps>): JSX.Element;
export declare function useMintMapController(): MintMapController;
export {};