Rocky_Mountain_Vending/.pnpm-store/v10/files/15/d6a424404b9dc07eb8b8d35f7a01f0466e68c1d8951492fc7cec84a3943fe60ccd13f61df23444c8160560ab96fc981fab5020d5b5738036cf9f06a20f96c8
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
658 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link isMonday} function options.
*/
export interface IsMondayOptions extends ContextOptions<Date> {}
/**
* @name isMonday
* @category Weekday Helpers
* @summary Is the given date Monday?
*
* @description
* Is the given date Monday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Monday
*
* @example
* // Is 22 September 2014 Monday?
* const result = isMonday(new Date(2014, 8, 22))
* //=> true
*/
export declare function isMonday(
date: DateArg<Date> & {},
options?: IsMondayOptions | undefined,
): boolean;