Files
cfw-autumn/shared/api/errors/codes/featureErrCodes.ts
John Yeo 9f17bb88b2 wip
2025-10-11 15:02:31 +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];