Rocky_Mountain_Vending/.pnpm-store/v10/files/82/ba84d24fd7dded3ad2122244b988333c1d15ebe510b1286e5a601db5465761eaf1dc3d0a991f10ebf4327c57d3cd27a575ad6c690ad71f84feb9f56360bafd
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

18 lines
762 B
Text

import type { DateRange } from "../types/index.js";
/**
* Checks if a given date is within a specified date range.
*
* @since 9.0.0
* @param range - The date range to check against.
* @param date - The date to check.
* @param excludeEnds - If `true`, the range's start and end dates are excluded.
* @param dateLib - The date utility library instance.
* @returns `true` if the date is within the range, otherwise `false`.
* @group Utilities
*/
export declare function rangeIncludesDate(range: DateRange, date: Date, excludeEnds?: boolean, dateLib?: import("../classes/DateLib.js").DateLib): boolean;
/**
* @private
* @deprecated Use {@link rangeIncludesDate} instead.
*/
export declare const isDateInRange: (range: DateRange, date: Date) => boolean;