Rocky_Mountain_Vending/.pnpm-store/v10/files/66/4dc4c03c630d5dc0121c3ca0b2690fe76ef1a53518c70b5909ee8f667bace014b7ec9e08d7dda13b4a36c8034f9beb10f8ae64844fef0da7d95a6442453c3d
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
791 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link getDaysInMonth} function options.
*/
export interface GetDaysInMonthOptions extends ContextOptions<Date> {}
/**
* @name getDaysInMonth
* @category Month Helpers
* @summary Get the number of days in a month of the given date.
*
* @description
* Get the number of days in a month of the given date, considering the context if provided.
*
* @param date - The given date
* @param options - An object with options
*
* @returns The number of days in a month
*
* @example
* // How many days are in February 2000?
* const result = getDaysInMonth(new Date(2000, 1))
* //=> 29
*/
export declare function getDaysInMonth(
date: DateArg<Date> & {},
options?: GetDaysInMonthOptions | undefined,
): number;