Rocky_Mountain_Vending/.pnpm-store/v10/files/d1/98fe7e2bc74efef67d89dd30a0438fa307d14ca2055a4ff9cea7e8ed509e6eaac10ff480aaaeb8d215b269e8b90d4e767da7c55dcd78d5292300e56186180d
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

33 lines
1 KiB
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link differenceInCalendarQuarters} function options.
*/
export interface DifferenceInCalendarQuartersOptions
extends ContextOptions<Date> {}
/**
* @name differenceInCalendarQuarters
* @category Quarter Helpers
* @summary Get the number of calendar quarters between the given dates.
*
* @description
* Get the number of calendar quarters between the given dates.
*
* @param laterDate - The later date
* @param earlierDate - The earlier date
* @param options - An object with options
*
* @returns The number of calendar quarters
*
* @example
* // How many calendar quarters are between 31 December 2013 and 2 July 2014?
* const result = differenceInCalendarQuarters(
* new Date(2014, 6, 2),
* new Date(2013, 11, 31)
* )
* //=> 3
*/
export declare function differenceInCalendarQuarters(
laterDate: DateArg<Date> & {},
earlierDate: DateArg<Date> & {},
options?: DifferenceInCalendarQuartersOptions | undefined,
): number;