UNPKG

@react-native-kakao/map

Version:

React Native Kakao Map SDK

32 lines 1.01 kB
/// <reference types="react-native/types/modules/codegen" /> import type { ViewProps } from 'react-native'; import type { Double } from 'react-native/Libraries/Types/CodegenTypes'; interface Camera { lat: Double; lng: Double; tilt?: Double; rotation?: Double; zoomLevel?: Double; } interface Props extends ViewProps { buildingScale?: Double; overlays?: ReadonlyArray<string>; poiEnabled?: boolean; poiClickable?: boolean; poiScale?: string; language?: string; baseMapType?: string; camera?: Camera; initialCamera?: Camera; cameraMinLevel?: Double; cameraMaxLevel?: Double; cameraAnimationDuration?: Double; isShowScaleBar?: boolean; isShowCompass?: boolean; } interface NativeCommands { } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<Props>; export default _default; export declare const Commands: NativeCommands; //# sourceMappingURL=RNCKakaoMapViewNativeComponent.d.ts.map