UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

7 lines (6 loc) 249 B
/** * @module paymentMethod * @description A list of payment methods */ export declare const paymentMethod: readonly ["card", "eft", "wallet", "cash", "voucher", "other"]; export declare type PaymentMethod = (typeof paymentMethod)[number];