Files
klz-cables.com/.pnpm-store/v10/files/d1/98fe7e2bc74efef67d89dd30a0438fa307d14ca2055a4ff9cea7e8ed509e6eaac10ff480aaaeb8d215b269e8b90d4e767da7c55dcd78d5292300e56186180d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

34 lines
1.0 KiB
Plaintext

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;