Files
cfw-autumn/shared/api/errors/codes/entityErrCodes.ts
John Yeo 9ba51d5055 wip
2025-11-04 10:56:58 +00:00

7 lines
170 B
TypeScript

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