Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/8839f92587606625d1358d772345cd89937c58b5e83b19d85149f7fd296463c9c116f51f226b9b15e5c5cb392038618d1c92cb43ca9eb2249aeed43a3ede34
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

29 lines
879 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link getISOWeekYear} function options.
*/
export interface GetISOWeekYearOptions extends ContextOptions<Date> {}
/**
* @name getISOWeekYear
* @category ISO Week-Numbering Year Helpers
* @summary Get the ISO week-numbering year of the given date.
*
* @description
* Get the ISO week-numbering year of the given date,
* which always starts 3 days before the year's first Thursday.
*
* ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date
*
* @param date - The given date
*
* @returns The ISO week-numbering year
*
* @example
* // Which ISO-week numbering year is 2 January 2005?
* const result = getISOWeekYear(new Date(2005, 0, 2))
* //=> 2004
*/
export declare function getISOWeekYear(
date: DateArg<Date> & {},
options?: GetISOWeekYearOptions | undefined,
): number;