UNPKG

@adyen/react-native

Version:

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

8 lines (6 loc) 279 B
import type { ApplePayError } from '../../core'; /** Internal result type passed to the native provideAuthorizationResult bridge method. Not part of the public API. */ export interface ApplePayAuthorizationResult { status: 'success' | 'failure'; errors?: ApplePayError[]; }