Rocky_Mountain_Vending/.pnpm-store/v10/files/57/67bccf236c655b812f1b8430b60618d2b4988802e1a14db4d1d6c8bf696b2c668f26a05cf5bc6dfdbf91f4d06e443bae910942e93e9961bc40db8f822311f1
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

18 lines
614 B
Text

import { type DateLib } from "../classes/DateLib.js";
/**
* Formats the year for the dropdown option label.
*
* @param year The year to format.
* @param dateLib The date library to use for formatting. Defaults to
* `defaultDateLib`.
* @returns The formatted year as a string.
* @group Formatters
* @see https://daypicker.dev/docs/translation#custom-formatters
*/
export declare function formatYearDropdown(year: Date, dateLib?: DateLib): string;
/**
* @private
* @deprecated Use `formatYearDropdown` instead.
* @group Formatters
*/
export declare const formatYearCaption: typeof formatYearDropdown;