Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/205207cd36b35dc6f3e550538509eddb6fff99fd491b24223efd3f0a09003c7e79825c25a3a94b069ab28eaab90ec361ddc97aebf8ca86e296cae8c61ab2d2
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

34 lines
1.1 KiB
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link differenceInISOWeekYears} function options.
*/
export interface DifferenceInISOWeekYearsOptions extends ContextOptions<Date> {}
/**
* @name differenceInISOWeekYears
* @category ISO Week-Numbering Year Helpers
* @summary Get the number of full ISO week-numbering years between the given dates.
*
* @description
* Get the number of full ISO week-numbering years between the given dates.
*
* ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date
*
* @param laterDate - The later date
* @param earlierDate - The earlier date
* @param options - The options
*
* @returns The number of full ISO week-numbering years
*
* @example
* // How many full ISO week-numbering years are between 1 January 2010 and 1 January 2012?
* const result = differenceInISOWeekYears(
* new Date(2012, 0, 1),
* new Date(2010, 0, 1)
* )
* // => 1
*/
export declare function differenceInISOWeekYears(
laterDate: DateArg<Date> & {},
earlierDate: DateArg<Date> & {},
options?: DifferenceInISOWeekYearsOptions | undefined,
): number;