Files
cfw-autumn/shared/api/errors/codes/checkoutErrCodes.ts
2026-03-10 13:26:39 +00:00

12 lines
307 B
TypeScript

/**
* Checkout-related error codes
*/
export const CheckoutErrorCode = {
CheckoutCompleted: "checkout_completed",
CheckoutExpired: "checkout_expired",
CheckoutUnavailable: "checkout_unavailable",
} as const;
export type CheckoutErrorCode =
(typeof CheckoutErrorCode)[keyof typeof CheckoutErrorCode];