UNPKG

@tricoteuses/senat

Version:

Handle French Sénat's open data

12 lines (11 loc) 403 B
export interface SenatMetadata { number: string | null; session: string | null; date: string | null; type: string | null; authors: string | null; title: string | null; commission: string | null; } export declare function extractMetadata(xmlDoc: Document): SenatMetadata; export declare function convertSenatXmlToHtml(texteXml: string, outputFilePath: string): Promise<void>;