Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/13b12658e54cbb81a0393e1e90efabc3295e361a9e66c4206d5681c128e20132ee368f9ade2027f1876e8e2a1205a25bce51c73859e798087e98a9eb6a657b
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

14 lines
589 B
Text

import { DateLib } from "../classes/index.js";
/**
* Returns the number of weeks to display in the broadcast calendar for a given
* month.
*
* The broadcast calendar may have either 4 or 5 weeks in a month, depending on
* the start and end dates of the broadcast weeks.
*
* @since 9.4.0
* @param month The month for which to calculate the number of weeks.
* @param dateLib The date library to use for date manipulation.
* @returns The number of weeks in the broadcast calendar (4 or 5).
*/
export declare function getBroadcastWeeksInMonth(month: Date, dateLib: DateLib): 4 | 5;