react-native-payment-gateway
Version:
this module for payment gateway, first gateway is midtrans payment gateway, i hope all payment gateway so you can contribute to this module
25 lines (22 loc) • 742 B
JavaScript
import {NativeModules} from 'react-native';
const {MidtransModule} = NativeModules;
export default {
checkOut: function (optionConect: ?object,
transRequest: ?object,
itemDetails: ?object,
creditCardOptions: ?object,
mapUserDetail: ?object,
optionColorTheme: ?object,
optionFont: ?object,
resultCheckOut) {
MidtransModule.checkOut(
optionConect,
transRequest,
itemDetails,
creditCardOptions,
mapUserDetail,
optionColorTheme,
optionFont,
resultCheckOut);
},
};