getWhatYear.d.ts 911 B

12345678910111213141516171819202122
  1. /**
  2. * 返回前几年或后几年的日期,可以指定年初(first)、年末(last)、月份(0~11),默认当前
  3. * @param date 字符串/日期/时间戳
  4. * @param year 年(默认当前年)、前几个年(数值)、后几个年(数值)
  5. */
  6. export declare function getWhatYear(date: string | Date | number, offset: number): Date;
  7. /**
  8. * 返回前几年或后几年的日期,可以指定年初(first)、年末(last)、月份(0~11),默认当前
  9. * @param date 字符串/日期/时间戳
  10. * @param year 年(默认当前年)、前几个年(数值)、后几个年(数值)
  11. * @param month 获取哪月:年初(first)、年末(last)、指定月份(0-11)
  12. */
  13. export declare function getWhatYear(date: string | Date | number, offset: number, month: number | 'first' | 'last'): Date;
  14. declare module './ctor' {
  15. interface XEUtilsMethods {
  16. getWhatYear: typeof getWhatYear;
  17. }
  18. }
  19. export default getWhatYear