Rocky_Mountain_Vending/.pnpm-store/v10/files/74/7160c323ceea512e7aa1b3d3bac9d732c57a730d716318632d0417028c4e5ca3c48f4c8bda3c5f6c7b3d27d9c3ef450c21b99f86bacbf062ccc8365da5817a
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
598 B
Text

import type { DateLib } from "../classes/index.js";
/**
* Returns the start date of the week in the broadcast calendar.
*
* The broadcast week starts on Monday. If the first day of the month is not a
* Monday, this function calculates the previous Monday as the start of the
* broadcast week.
*
* @since 9.4.0
* @param date The date for which to calculate the start of the broadcast week.
* @param dateLib The date library to use for date manipulation.
* @returns The start date of the broadcast week.
*/
export declare function startOfBroadcastWeek(date: Date, dateLib: DateLib): Date;