mirror of
https://github.com/mosh-hamedani/helpdesk.git
synced 2026-05-21 11:58:19 +02:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export const Role = {
|
|
admin: "admin",
|
|
agent: "agent",
|
|
} as const;
|
|
|
|
export type Role = (typeof Role)[keyof typeof Role];
|