UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

16 lines (14 loc) 265 B
/** * Type of a course event * @author Gabe Abrams */ enum CourseEventType { Class = 'class', Section = 'section', Lab = 'lab', OfficeHours = 'office-hours', Meeting = 'meeting', Event = 'event', Other = 'other', } export default CourseEventType;