Rocky_Mountain_Vending/.pnpm-store/v10/files/46/395d74d28962df9e30e907587a330a85ab6c9a0af548ef7ed673203f4bb0931380668f6dda8fe9f6515043d45ee8164e0e953e19daaad40a503873d04b27e5
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

17 lines
487 B
Text

/**
* Determines if two date ranges overlap.
*
* @since 9.2.2
* @param rangeLeft - The first date range.
* @param rangeRight - The second date range.
* @param dateLib - The date utility library instance.
* @returns `true` if the ranges overlap, otherwise `false`.
* @group Utilities
*/
export declare function rangeOverlaps(rangeLeft: {
from: Date;
to: Date;
}, rangeRight: {
from: Date;
to: Date;
}, dateLib?: import("../classes/DateLib.js").DateLib): boolean;