UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

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