// https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount
export interface PaymentCurrencyAmount {
    currency: string;
    value: string;
}
