UNPKG

@tricoteuses/senat

Version:

Handle French Sénat's open data

12 lines (11 loc) 232 B
export interface CompteRendu { sections: Section[]; } export interface Section { id: string | null; interventions: Intervention[]; } export interface Intervention { id: string | null; texteHtml: string | null; }