UNPKG

catalog.js

Version:

A JavaScript / TypeScript API for the Middlebury course catalog.

15 lines 427 B
import Location from "./Location.js"; type MeetingElement = string | null; export default class Meeting { raw: MeetingElement; startTime: MeetingElement; endTime: MeetingElement; startDate: MeetingElement; endDate: MeetingElement; days: string[]; location: Location | null; constructor(options: object); private _parseMeeting; } export {}; //# sourceMappingURL=Meeting.d.ts.map