UNPKG

@rnw-community/react-native-payments

Version:

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

11 lines (9 loc) 292 B
// https://developers.google.com/pay/api/android/guides/resources/payment-data-cryptography#signed-key export interface AndroidSignedKey { keyExpiration: string; keyValue: string; } export const emptyAndroidSignedKey: AndroidSignedKey = { keyExpiration: '', keyValue: '', };