@tricoteuses/senat
Version:
Handle French Sénat's open data
7 lines (6 loc) • 306 B
TypeScript
import { AgendaEvent } from "../types/agenda";
export declare function getStartAndEndTimes(timeStr: string | null | undefined, dateISO: string): {
startTime: string | null;
endTime: string | null;
};
export declare function parseAgendaFromFile(htmlFilePath: string): Promise<AgendaEvent[] | null>;