UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

15 lines (13 loc) 258 B
/** * Type for capturing a specific day. * @author Benedikt Arnarsson */ type MMDDYY = { // Year of the date year: number, // Month in the year of the date month: number, // Day of the month of the date day: number, }; export default MMDDYY;