UNPKG

@tricoteuses/assemblee

Version:

Retrieve, clean up & handle French Assemblée nationale's open data

9 lines (8 loc) 362 B
import { ActeurClean } from '../schemas/clean/acteurs_et_organes'; import { RapporteurRaw } from '../schemas/raw/dossiers_legislatifs'; type RapporteurMutable = RapporteurRaw & { etudePlfRef?: string; }; export declare function cleanActeur(data: unknown): ActeurClean; export declare function cleanRapporteur(rapporteur: RapporteurMutable): void; export {};