Rocky_Mountain_Vending/.pnpm-store/v10/files/96/d1a9006198179bb0dcf6a7cd1e215f6522c469d1326fedeb7690eb7227b263255ac609fb742a4f6d0f42d04266bf4f6f0367a106f90f33190451da311a8451
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

31 lines
974 B
Text

import type { ContextOptions, DateArg, RoundingOptions } from "./types.js";
/**
* The {@link differenceInQuarters} function options.
*/
export interface DifferenceInQuartersOptions
extends RoundingOptions,
ContextOptions<Date> {}
/**
* @name differenceInQuarters
* @category Quarter Helpers
* @summary Get the number of quarters between the given dates.
*
* @description
* Get the number of 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 full quarters
*
* @example
* // How many full quarters are between 31 December 2013 and 2 July 2014?
* const result = differenceInQuarters(new Date(2014, 6, 2), new Date(2013, 11, 31))
* //=> 2
*/
export declare function differenceInQuarters(
laterDate: DateArg<Date> & {},
earlierDate: DateArg<Date> & {},
options?: DifferenceInQuartersOptions | undefined,
): number;