getWhatDay.d.ts 690 B

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