resistants/src/getAcademie.ts

8 lines
244 B
TypeScript
Raw Permalink Normal View History

import { Academie } from "./Academie";
import { Departement } from "./Departement";
import { mapDepartementsAcademie } from "./departements";
export function getAcademie(dept: Departement): Academie {
return mapDepartementsAcademie[dept];
}