Files
cfw-autumn/shared/api/errors/codes/entityErrCodes.ts
2025-11-20 11:35:31 +00:00

8 lines
217 B
TypeScript

export const EntityErrorCode = {
EntityNotFound: "entity_not_found",
EntityAlreadyExists: "entity_already_exists",
} as const;
export type EntityErrorCode =
(typeof EntityErrorCode)[keyof typeof EntityErrorCode];