UNPKG

816 BTypeScriptView Raw
1/**
2 * @name addMinutes
3 * @category Minute Helpers
4 * @summary Add the specified number of minutes to the given date.
5 *
6 * @description
7 * Add the specified number of 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 amount - The amount of minutes to be added.
13 *
14 * @returns The new date with the minutes added
15 *
16 * @example
17 * // Add 30 minutes to 10 July 2014 12:00:00:
18 * const result = addMinutes(new Date(2014, 6, 10, 12, 0), 30)
19 * //=> Thu Jul 10 2014 12:30:00
20 */
21export declare function addMinutes<DateType extends Date>(
22 date: DateType | number | string,
23 amount: number,
24): DateType;