package com.marcosfuenmayor.expomultipleimagepicker import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReactContextBaseJavaModule class ImagePickerModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) { override fun getName() = "ImagePickerModule" override fun getConstants(): MutableMap { return hashMapOf("count" to 1) } }