import type { Employee } from './employee' export type Formation = { id: number startDate: string endDate: string comment: string | null justificatifPath: string | null justificatifName: string | null createdAt: string employee?: Employee }