auto-loading completely done

This commit is contained in:
Sriram Hariharan
2023-03-05 14:34:26 -06:00
parent 2b952d0591
commit 0956525e94
13 changed files with 248 additions and 53 deletions

View File

@@ -78,9 +78,9 @@ export class Course {
}
/**
* A helper type that is used to represent a row in the course schedule table, with the actual element corresponding to the course object
* A helper type that is used to represent an element in the DOM, with the actual element corresponding to the course object
*/
export type CourseRow = {
rowElement: HTMLTableRowElement;
export type ScrapedRow = {
element: HTMLTableRowElement;
course: Course;
};