Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
448 B
Text
18 lines
448 B
Text
/**
|
|
* @name hoursToMinutes
|
|
* @category Conversion Helpers
|
|
* @summary Convert hours to minutes.
|
|
*
|
|
* @description
|
|
* Convert a number of hours to a full number of minutes.
|
|
*
|
|
* @param hours - number of hours to be converted
|
|
*
|
|
* @returns The number of hours converted in minutes
|
|
*
|
|
* @example
|
|
* // Convert 2 hours to minutes:
|
|
* const result = hoursToMinutes(2)
|
|
* //=> 120
|
|
*/
|
|
export declare function hoursToMinutes(hours: number): number;
|