UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

10 lines (9 loc) 288 B
import MMDDYY from '../types/MMDDYY'; /** * Parse a string to MMDDYY. * @author Benedikt Arnarsson * @param str inputted string to parse. * @returns object with `year`, `month`, and `day` properties. */ declare const parseMMDDYY: (str: string) => MMDDYY; export default parseMMDDYY;