Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/5a057799ea0ff1867b78e77b699c96564a12ae30085b0f320bb2db5539ca46e802799b7340c395a659b61ed21b42bc6eba8f9f4acd1fe4f0e989dfa18cb0d9
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
431 B
Text

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