/**
 * User Role Type Definitions
 * Defines TypeScript types for user roles based on USER_ROLE constants
 */
import { USER_ROLE } from '../constants/userRole_constant';

/**
 * Type representing all possible user roles
 * This type is derived from the keys of the USER_ROLE object
 */
export type TUserRole = keyof typeof USER_ROLE;
