addBusinessDays.d.ts 922 B

123456789101112131415161718192021222324
  1. /**
  2. * @name addBusinessDays
  3. * @category Date Extension Helpers
  4. * @summary Add the specified number of business days (mon - fri) to the given date.
  5. *
  6. * @description
  7. * Add the specified number of business days (mon - fri) to the given date, ignoring weekends.
  8. *
  9. * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
  10. *
  11. * @param date - The date to be changed
  12. * @param amount - The amount of business days to be added.
  13. *
  14. * @returns The new date with the business days added
  15. *
  16. * @example
  17. * // Add 10 business days to 1 September 2014:
  18. * const result = addBusinessDays(new Date(2014, 8, 1), 10)
  19. * //=> Mon Sep 15 2014 00:00:00 (skipped weekend days)
  20. */
  21. export declare function addBusinessDays<DateType extends Date>(
  22. date: DateType | number | string,
  23. amount: number,
  24. ): DateType;