mosh-helpdesk/core/constants/role.ts
2026-02-19 11:12:49 -08:00

7 lines
124 B
TypeScript

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