Files
cfw-autumn/shared/api/errors/codes/featureErrCodes.ts
2025-10-16 16:08:19 +01:00

8 lines
225 B
TypeScript

export const FeatureErrorCode = {
FeatureNotFound: "feature_not_found",
FeatureAlreadyExists: "feature_already_exists",
} as const;
export type FeatureErrorCode =
(typeof FeatureErrorCode)[keyof typeof FeatureErrorCode];