Rocky_Mountain_Vending/.pnpm-store/v10/files/be/c047873cdb35feb3c1a8f4b1fbbd957f2bade6b03ae737506b0ac7f02c83df7647e436b24eb15f36be86125b2a348c819165e4b61ed898e4cf49b1fde55237
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

8 lines
317 B
Text

import type { CalendarMonth, CalendarWeek } from "../classes/index.js";
/**
* Returns an array of calendar weeks from an array of calendar months.
*
* @param months The array of calendar months.
* @returns An array of calendar weeks.
*/
export declare function getWeeks(months: CalendarMonth[]): CalendarWeek[];