@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
13 lines • 452 B
TypeScript
import { IosPKPaymentMethodType } from '../enum/ios-pk-payment-method-type.enum';
import type { IosPaymentData } from './ios-payment-data';
export interface IosPKToken {
paymentData: IosPaymentData;
paymentMethod: {
displayName: string;
network: string;
type: IosPKPaymentMethodType;
};
transactionIdentifier: string;
}
export declare const emptyIosPKToken: IosPKToken;
//# sourceMappingURL=ios-pk-token.d.ts.map