UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

14 lines (12 loc) 241 B
/** * @module paymentStatus * @description A list of paymentStatus */ export const paymentStatus = [ 'processed', 'cancelled', 'pending', 'failed', 'refunded', ] as const; export type PaymentStatus = (typeof paymentStatus)[number];