/** * 判断是否闰年 * * @param {Date} date 日期或数字 * @return {boolean} */ declare function isLeapYear(date: any): boolean; export default isLeapYear;