getWhatMonth.d.ts 872 B

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