/**
 * 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;
