package com.thumbhash import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReactContextBaseJavaModule import com.facebook.react.bridge.Promise abstract class NativeThumbhashModuleSpec internal constructor(context: ReactApplicationContext) : ReactContextBaseJavaModule(context) { abstract fun encode(imageUri: String, promise: Promise) }