Files
cfw-autumn/shared/api/errors/codes/featureErrCodes.ts
2025-11-21 16:00:41 +00:00

8 lines
223 B
TypeScript

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