SarahXia0405 commited on
Commit
cc3a713
·
verified ·
1 Parent(s): 82b2f83

Create courseDirectory.ts

Browse files
Files changed (1) hide show
  1. web/src/lib/courseDirectory.ts +8 -0
web/src/lib/courseDirectory.ts ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ type Person = { name: string; email?: string };
2
+
3
+ export type CourseDirectoryItem = {
4
+ id: string;
5
+ name: string;
6
+ instructor?: Person;
7
+ teachingAssistant?: Person;
8
+ };