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

13 lines
672 B
Text

import { DateLib, type DateLibOptions } from "../classes/DateLib.js";
/**
* Generates the ARIA label for a weekday column header.
*
* @defaultValue `"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"`
* @param date - The date representing the weekday.
* @param options - Optional configuration for the date formatting library.
* @param dateLib - An optional instance of the date formatting library.
* @returns The ARIA label for the weekday column header.
* @group Labels
* @see https://daypicker.dev/docs/translation#aria-labels
*/
export declare function labelWeekday(date: Date, options?: DateLibOptions, dateLib?: DateLib): string;