alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
10 lines (9 loc) • 380 B
TypeScript
import MMDDYY from '../../../shared/types/MMDDYY';
/**
* Extract a description of a date, relative to the current week-day.
* @author Benedikt Arnarsson
* @param date the date that info is being displayed for.
* @returns a string describing the day, relative to the current day.
*/
declare const dateToDescription: (date: MMDDYY) => string;
export default dateToDescription;