UNPKG

imobile_for_reactnative

Version:

iMobile for ReactNative,是SuperMap iMobile推出的一款基于React-Native框架的移动应用开发工具。基于该开发工具,用户可以使用JavaScript开发语言,开发出在Android和IOS操作系统下运行的原生移动GIS应用,入门门槛低,一次开发,处处运行。

21 lines (16 loc) 477 B
import { NativeModules } from "react-native" export interface ILicenseModule { ITABLET_STANDARD: string ITABLET_PROFESSIONAL: string ITABLET_ADVANCED: string ITABLET_ARMAP: string ITABLET_NAVIGATIONMAP: string ITABLET_DATAANALYSIS: string ITABLET_PLOTTING: string ARSURVEY_STANDARD: string ARSURVEY_PROFESSIONAL: string CLOUD_TRIAL: string STAFF: string } const LicenseModule: ILicenseModule = NativeModules.LicenseModule export default LicenseModule