@heknon/node-webtop
Version:
A Backend for an unofficial WebTop (SmartSchool - Israel) API.
7 lines (6 loc) • 331 B
TypeScript
import { TimeTable } from './DataObjects';
/**
* construct timetable type @see {TimeTable}
* @param timetableHtml the timetable html of webtop from https://www.webtop.co.il/pupilCardData.aspx?viewID=10&id=0&year=0
*/
export declare function constructTimeTable(timetableHtml: string, removeEmptyHours: boolean): TimeTable;