setDayOfYear.d.mts 802 B

123456789101112131415161718192021222324
  1. /**
  2. * @name setDayOfYear
  3. * @category Day Helpers
  4. * @summary Set the day of the year to the given date.
  5. *
  6. * @description
  7. * Set the day of the year to the given date.
  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 dayOfYear - The day of the year of the new date
  13. *
  14. * @returns The new date with the day of the year set
  15. *
  16. * @example
  17. * // Set the 2nd day of the year to 2 July 2014:
  18. * const result = setDayOfYear(new Date(2014, 6, 2), 2)
  19. * //=> Thu Jan 02 2014 00:00:00
  20. */
  21. export declare function setDayOfYear<DateType extends Date>(
  22. date: DateType | number | string,
  23. dayOfYear: number,
  24. ): DateType;