import { NativeModules } from 'react-native'; // type EsewaType = { // init( // merchantId: String, // merchantSecret: String, // environment: String // ): Promise; // makePayment( // price: String, // productName: String, // productId: String, // callBackUrl: String // ): Promise; // }; type EsewaType = { startSdk( merchantId: String, merchantSecret: String, productName: String, productAmount: String, productId: String, callbackUrl: String ): Promise; }; const { Esewa } = NativeModules; export default Esewa as EsewaType;