react-native-midtrans-payment-gateway
Version:
Midtrans payment gateway forked from 'https://github.com/aldente05/react-native-payment-gateway'
25 lines (22 loc) • 766 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);
},
};