UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

16 lines (14 loc) 274 B
/** * @module paymentMethods * @description A list of paymentMethods */ export const paymentMethods = [ 'cheque', 'card', 'cash', 'paypal', 'wireTransfer', 'cryptoCurrency', 'mobileMoney', ] as const; export type PaymentMethods = (typeof paymentMethods)[number];