@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
18 lines (16 loc) • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GooglePayWrapper = void 0;
var _ActionHandlingComponentWrapper = require("../base/ActionHandlingComponentWrapper");
/** Native module interface specific to GooglePay */
/** Google Pay wrapper - no additional events beyond inherited ones. */
class GooglePayWrapper extends _ActionHandlingComponentWrapper.ActionHandlingComponentWrapper {
name = 'GooglePay';
isAvailable(paymentMethods, configuration) {
return this.nativeModule.isAvailable(paymentMethods, configuration);
}
}
exports.GooglePayWrapper = GooglePayWrapper;
//# sourceMappingURL=GooglePayWrapper.js.map