catalog.js
Version:
A JavaScript / TypeScript API for the Middlebury course catalog.
15 lines • 435 B
TypeScript
import Location from "./Location.js";
declare 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