@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
10 lines (8 loc) • 308 B
text/typescript
import type { PaymentCurrencyAmount } from '../../w3c/payment-currency-amount.js';
// https://developer.apple.com/documentation/passkit/pkshippingmethod?language=objc
export interface IosPKShippingMethod {
amount: PaymentCurrencyAmount;
detail?: string;
identifier: string;
label: string;
}