UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

11 lines (10 loc) 172 B
/** * Type for capturing a specific day. * @author Benedikt Arnarsson */ type MMDDYY = { year: number; month: number; day: number; }; export default MMDDYY;