UNPKG

hl-utils-test518

Version:

JavaScript 函数库、工具类

19 lines (16 loc) 375 B
/** * 判断是否闰年 * @param date 日期 */ export declare function isLeapYear(date: Date | number | string): boolean; export declare function isLeapYear(date: any): boolean; declare module './ctor' { interface HLUtilsMethods { /** * 判断是否闰年 * @param date 日期 */ isLeapYear: typeof isLeapYear; } } export default isLeapYear