import { typesEvenementsPenal } from "./TypeEvenementsPenal"; import { typesEvenementsSocial } from "./TypeEvenementsSocial"; export const typesEvenements = [ ...typesEvenementsPenal, ...typesEvenementsSocial, "Signalement au procureur", // "Contrôle forcé", // "Validation désobéissance", "Contrôle URSSAF", "Contrôle fiscal", "CAF suppression", ] as const; export type TypeEvenement = (typeof typesEvenements)[number];