Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/9878bbb208fc288a7829b588915fa07e4cc9103c65abee99f81e097deba15fa17440a158d1a0870d0c332fbfca12fb9f270793c46ffeb2a0e035b96f72c6e1
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

10 lines
414 B
Text

import type { CalendarDay, CalendarMonth } from "../classes/index.js";
/**
* Returns all the days belonging to the calendar by merging the days in the
* weeks for each month.
*
* @param calendarMonths The array of calendar months.
* @returns An array of `CalendarDay` objects representing all the days in the
* calendar.
*/
export declare function getDays(calendarMonths: CalendarMonth[]): CalendarDay[];