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>
14 lines
589 B
Text
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;
|