@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
17 lines (15 loc) • 457 B
JavaScript
;
/** Native module interface specific to Action */
export class ActionModuleWrapper {
constructor(nativeModule) {
this.nativeModule = nativeModule;
this.threeDS2SdkVersion = nativeModule.getConstants().threeDS2SdkVersion;
}
handle(action, configuration) {
return this.nativeModule.handle(action, configuration);
}
hide(success) {
this.nativeModule.hide(success);
}
}
//# sourceMappingURL=ActionModuleWrapper.js.map