mirror of
https://framagit.org/enfance-libre/statistiques
synced 2025-12-10 20:03:46 +00:00
15 lines
445 B
TypeScript
15 lines
445 B
TypeScript
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];
|