mosh-helpdesk/core/constants/role.ts
2026-02-18 11:34:27 -08:00

7 lines
124 B
TypeScript

export const Role = {
admin: "admin",
agent: "agent",
} as const;
export type Role = (typeof Role)[keyof typeof Role];