slash-e/frontend/web/src/stores/v1/subscription.ts
2024-02-19 20:45:54 +08:00

12 lines
285 B
TypeScript

import { PlanType } from "@/types/proto/api/v1/subscription_service";
export const stringifyPlanType = (planType: PlanType) => {
if (planType === PlanType.FREE) {
return "Free";
} else if (planType === PlanType.PRO) {
return "Pro";
} else {
return "Unknown";
}
};