Rocky_Mountain_Vending/.pnpm-store/v10/files/02/9713015b472e96ac5f4945ed1f0be95521637c1bae619786d0fab5339213fc8cf3141e61855a4f9d460a0c90132e7c3bd17fa42e16e33a746b1cd4fdd63996
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

27 lines
685 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link getQuarter} function options.
*/
export interface GetQuarterOptions extends ContextOptions<Date> {}
/**
* @name getQuarter
* @category Quarter Helpers
* @summary Get the year quarter of the given date.
*
* @description
* Get the year quarter of the given date.
*
* @param date - The given date
* @param options - An object with options
*
* @returns The quarter
*
* @example
* // Which quarter is 2 July 2014?
* const result = getQuarter(new Date(2014, 6, 2));
* //=> 3
*/
export declare function getQuarter(
date: DateArg<Date> & {},
options?: GetQuarterOptions | undefined,
): number;