Files
cfw-autumn/shared/api/errors/codes/cusErrCodes.ts
2025-11-14 15:59:39 +00:00

10 lines
252 B
TypeScript

/**
* Customer-related error codes
*/
export const CusErrorCode = {
CustomerNotFound: "customer_not_found",
CustomerAlreadyExists: "customer_already_exists",
} as const;
export type CusErrorCode = (typeof CusErrorCode)[keyof typeof CusErrorCode];