Files
nullcart/backend/src/consts/paymentMethodLabel.ts
T

7 lines
206 B
TypeScript

import { PaymentMethod } from '../modules/payment/types/PaymentMethod';
export const paymentMethodLabel: Record<PaymentMethod, string> = {
[PaymentMethod.Xmr]: 'XMR',
[PaymentMethod.Btc]: 'BTC'
};