10 lines
252 B
TypeScript
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];
|