UNPKG

@rnw-community/react-native-payments

Version:

Accept Payments with Apple Pay and Android Pay using the Payment Request API.

9 lines (7 loc) 248 B
import type { PaymentCurrencyAmount } from './payment-currency-amount'; // https://www.w3.org/TR/payment-request/#paymentitem-dictionary export interface PaymentItem { amount: PaymentCurrencyAmount; label: string; pending?: boolean; }