UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

16 lines (14 loc) 230 B
/** * Enum for the days of the week * @author Gabe Abrams */ enum DayOfWeek { Monday = 'M', Tuesday = 'T', Wednesday = 'W', Thursday = 'R', Friday = 'F', Saturday = 'S', Sunday = 'U', } export default DayOfWeek;