catalog.js
Version:
A JavaScript / TypeScript API for the Middlebury course catalog.
18 lines • 514 B
TypeScript
/**
* A course class to store the course data
* @param {string} course the course data
* @const {course} the converted format of the course data
*
*/
type CourseInfoElement = string | null;
export default class CourseInfo {
rawID: CourseInfoElement;
href: CourseInfoElement;
text: CourseInfoElement;
id: CourseInfoElement;
constructor(options: object, parse?: boolean);
private _parseOptions;
private _parseID;
}
export {};
//# sourceMappingURL=CourseInfo.d.ts.map