9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
/**
|
|
* Customer-related error codes
|
|
*/
|
|
export const CusErrorCode = {
|
|
CustomerNotFound: "customer_not_found",
|
|
} as const;
|
|
|
|
export type CusErrorCode = (typeof CusErrorCode)[keyof typeof CusErrorCode];
|