@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
8 lines (6 loc) • 335 B
text/typescript
import type { IosPaymentMethodDataDataInterface } from './ios-payment-method-data-data.interface';
import type { PaymentMethodNameEnum } from '../../../enum/payment-method-name.enum';
export interface IosPaymentMethodDataInterface {
data: IosPaymentMethodDataDataInterface;
supportedMethods: PaymentMethodNameEnum.ApplePay;
}