UNPKG

448 BTypeScriptView Raw
1/**
2 * @name hoursToMinutes
3 * @category Conversion Helpers
4 * @summary Convert hours to minutes.
5 *
6 * @description
7 * Convert a number of hours to a full number of minutes.
8 *
9 * @param hours - number of hours to be converted
10 *
11 * @returns The number of hours converted in minutes
12 *
13 * @example
14 * // Convert 2 hours to minutes:
15 * const result = hoursToMinutes(2)
16 * //=> 120
17 */
18export declare function hoursToMinutes(hours: number): number;