import type { Employee } from './employee' export type User = { id: number username: string roles: string[] isLocked: boolean hasLeaveRecapAccess: boolean employee?: Employee | null }