Files
cfw-autumn/shared/api/errors/codes/balancesErrCodes.ts
2026-06-03 12:30:09 +01:00

8 lines
232 B
TypeScript

export const BalancesErrorCode = {
InsufficientBalance: "insufficient_balance",
UsageLimitExceeded: "usage_limit_exceeded",
} as const;
export type BalancesErrorCode =
(typeof BalancesErrorCode)[keyof typeof BalancesErrorCode];