Repository URL to install this package:
|
Version:
2.7.6 ▾
|
import { isValidMonth, isValidYear } from './isValidDates';
declare const currentMonth: number;
declare const currentYear: string;
declare const currentYearTwoDigit: string;
/**
* @todo validator story is not aligned with this
*/
declare function isValidExpiryDate(date: any): boolean;
export { isValidExpiryDate, isValidYear, currentYear, currentYearTwoDigit, isValidMonth, currentMonth, };
export default isValidExpiryDate;