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