UNPKG

@heknon/node-webtop

Version:

A Backend for an unofficial WebTop (SmartSchool - Israel) API.

9 lines (7 loc) 193 B
import { Lesson } from "../DataObjects"; export type TimeTable = Array<TimeTableDay>; export interface TimeTableDay { day: string, dayNum: number, todayClasses: Lesson[] }