alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
10 lines (9 loc) • 374 B
TypeScript
import MMDDYY from '../types/MMDDYY';
/**
* Create a string representation of an MMDDYY object.
* @author Benedikt Arnarsson
* @param mmddyy the inputted object with `year`, `month`, and `day` properties.
* @returns a string representing the object, of the form YYYY.[M]M.[D]D
*/
declare const toStringMMDDYY: (mmddyy: MMDDYY) => string;
export default toStringMMDDYY;