Rocky_Mountain_Vending/.pnpm-store/v10/files/a7/d18ffb8b337e45f6dc46261651e61dc0ebc265d3e7250093d3f5c0b559771e1a2bad1c04381e7779e2f9f99464ee8238edc368a5371e35bc84a0c810d92842
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
445 B
Text

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