export class AuroInputUtilities { /** * Configures the mask to be used on the input element based on format and/or type. * IMask tool documentation: https://imask.js.org/. * @private * @param {string} type - The input type. * @param {string} format - The format of the mask to apply. * @returns {void} */ private getMaskOptions; /** * @private * @param {string} dateStr - Date string to format. * @param {string} format - Date format to use. * @returns {void} */ private toNorthAmericanFormat; /** * @private * @param {string} dateStr - Date string to parse. * @param {string} format - Date format to parse. * @returns {void} */ private parseDate; }