16 lines
372 B
TypeScript
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";
|