UNPKG

@rnw-community/react-native-payments

Version:

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

10 lines 438 B
import type { IosPKContact } from './ios-pk-contact.js'; import type { IosPKShippingMethod } from './ios-pk-shipping-method.js'; import type { IosRawPKToken } from './ios-raw-pk-token.js'; export interface IosPKPayment { billingContact?: Pick<IosPKContact, 'name' | 'postalAddress'>; shippingContact?: IosPKContact; shippingMethod?: IosPKShippingMethod; token: IosRawPKToken; } //# sourceMappingURL=ios-pk-payment.d.ts.map