UNPKG

@adyen/react-native

Version:

Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native

14 lines 571 B
import type { ViewProps } from 'react-native'; import type { DirectEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes'; export type LayoutChangeEvent = { width: Int32; height: Int32; }; export interface NativeProps extends ViewProps { paymentMethod: string; configuration: string; onLayoutChange?: DirectEventHandler<LayoutChangeEvent>; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>; export default _default; //# sourceMappingURL=NativeCardView.d.ts.map