7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
export const EntityErrorCode = {
|
|
EntityNotFound: "entity_not_found",
|
|
} as const;
|
|
|
|
export type EntityErrorCode =
|
|
(typeof EntityErrorCode)[keyof typeof EntityErrorCode];
|