@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
13 lines • 609 B
TypeScript
import { PaymentAction } from '../core/types';
import { ComponentWrapper } from './ComponentWrapper';
import { AdyenActionComponent } from '../core/AdyenNativeModules';
import { NativeModule } from 'react-native';
import { Event } from '../core/constants';
/**
* Wrapper for all Native Modules that support Action handling.
* */
export declare class ActionHandlingComponentWrapper extends ComponentWrapper implements AdyenActionComponent {
constructor(nativeModule: NativeModule, events?: Event[]);
handle(action: PaymentAction): void;
}
//# sourceMappingURL=ActionHandlingComponentWrapper.d.ts.map