Files
2025-10-20 17:07:41 +03:00

16 lines
372 B
TypeScript

export const PAYMENT_STATUS = {
PENDING: "pending",
REVIEW: "review",
FAILED: "failed",
SUCCESS: "success",
};
export type PaymentStatus = "pending" | "review" | "failed" | "success";
export const UserRoleMap = {
ADMIN: "admin",
AGENT: "agent",
SUPERVISOR: "supervisor",
ENDUSER: "enduser",
};
export type UserType = "admin" | "agent" | "supervisor" | "enduser";