import type { Employee } from './employee' import type { AbsenceType } from './absence-type' export type Absence = { id: number startDate: string endDate: string comment?: string | null employee: Employee type: AbsenceType }