UNPKG

catalog.js

Version:

A JavaScript / TypeScript API for the Middlebury course catalog.

16 lines 454 B
/** * A schedule class to store the schedule data * @param {string} schedule the schedule data * @const {schedule} the converted format of the schedule data * */ import Meeting from "./Meeting.js"; type ScheduleElement = string | null; export default class Schedule { text: ScheduleElement; meetings: Meeting[]; constructor(scheduleObj: any); private _parseSchedule; } export {}; //# sourceMappingURL=Schedule.d.ts.map