UNPKG

777 BTypeScriptView Raw
1/**
2 * @name setMinutes
3 * @category Minute Helpers
4 * @summary Set the minutes to the given date.
5 *
6 * @description
7 * Set the minutes 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 minutes - The minutes of the new date
13 *
14 * @returns The new date with the minutes set
15 *
16 * @example
17 * // Set 45 minutes to 1 September 2014 11:30:40:
18 * const result = setMinutes(new Date(2014, 8, 1, 11, 30, 40), 45)
19 * //=> Mon Sep 01 2014 11:45:40
20 */
21export declare function setMinutes<DateType extends Date>(
22 date: DateType | number | string,
23 minutes: number,
24): DateType;