@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
16 lines (13 loc) • 495 B
JavaScript
;
import { PaymentComponentWrapper } from './PaymentComponentWrapper';
/** Native module interface for action-handling components */
/**
* Wrapper for Native Modules that support Action handling.
* @typeParam T - The specific native module interface for the concrete wrapper
*/
export class ActionHandlingComponentWrapper extends PaymentComponentWrapper {
handle(action) {
this.nativeModule.handle(action);
}
}
//# sourceMappingURL=ActionHandlingComponentWrapper.js.map