UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

7 lines (6 loc) 253 B
/** * @module paymentStatus * @description A list of paymentStatus */ export declare const paymentStatus: readonly ["processed", "cancelled", "pending", "failed", "refunded"]; export declare type PaymentStatus = (typeof paymentStatus)[number];