Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/de26fcd865e52d1db301638ca38eec2f27c9c7ea2b5d8927e01e925f86fdb7a0a96301316c22c0208e6a07e2a51dd5dd6d6bdba0358d2c7e27c4ea1a2f8919
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;