UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

14 lines (13 loc) 237 B
/** * @module paymentMethod * @description A list of payment methods */ export const paymentMethod = [ 'card', 'eft', 'wallet', 'cash', 'voucher', 'other', ] as const; export type PaymentMethod = (typeof paymentMethod)[number];