/*** * * @description Class Contains all regular expressions used in the project. * @author Prerak Tiwari */ export declare class AppRegex { /** * @description Regular Expression to validate username */ static USERNAME_REGEX: RegExp; /** * @description Regular Expression to validate First Name, Last Name */ static NAME_REGEX: RegExp; /** * @description Regular Expression to validate if at least 1 of the following character is present or not : '_' '@' '*' '$' '!' '#' '.' */ static CLAIMANT_SYMBOL_REGEX: RegExp; /** * @description Regular Expression to validate if at least 2 of the following character is present or not : '_' '@' '*' '$' '!' '#' '.' */ static AGENCY_SYMBOL_REGEX: RegExp; /** * @description Regular Expression to validate if small case letter is present or not */ static LOWER_CASE_REGEX: RegExp; /** * @description Regular Expression to validate if upper case letter is present or not */ static UPPER_CASE_REGEX: RegExp; /** * @description Regular Expression to validate if numbber is present or not */ static NUMBER_REGEX: RegExp; /** * @description Regular Expression to validate if accountnumber has only numbers present or not */ static ACCOUNT_NUMBER_REGEX: RegExp; /** * @description Regular Expression to validate email format */ static EMAIL_REGEX: RegExp; /** * @description Regular Expression to station no. format */ static STATION_NO_REGEX: RegExp; } //# sourceMappingURL=AppRegex.d.ts.map