Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/9fde7d55950d9ea5c24f29ea122b3f3c96232b01c2599a981aac774ad784b3b7d2a97a02ac52563f2ecd732a23c6a58c1f974948a7f74d20ae28455c6b124f
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
453 B
Text

/**
* @name hoursToSeconds
* @category Conversion Helpers
* @summary Convert hours to seconds.
*
* @description
* Convert a number of hours to a full number of seconds.
*
* @param hours - The number of hours to be converted
*
* @returns The number of hours converted in seconds
*
* @example
* // Convert 2 hours to seconds:
* const result = hoursToSeconds(2)
* //=> 7200
*/
export declare function hoursToSeconds(hours: number): number;