UNPKG

@mint-ui/map

Version:

- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported

18 lines (17 loc) 486 B
/// <reference types="react" /> /** * 유틸 컴포넌트 : 텍스트 로딩 */ export interface PointLoadingProps { text?: string; pointCount?: number; speedMs?: number; } export declare function PointLoading({ text, pointCount, speedMs }: PointLoadingProps): JSX.Element; export declare function MapLoadingWithImage({ size }: MapImageLoadingProps): JSX.Element; interface MapImageLoadingProps { size?: number; duration?: number; delay?: number; } export {};