UNPKG

304 BTypeScriptView Raw
1/**
2 * Determines whether a given range overlaps with another range.
3 *
4 * @since 9.2.2
5 * @group Utilities
6 */
7export declare function rangeOverlaps(rangeLeft: {
8 from: Date;
9 to: Date;
10}, rangeRight: {
11 from: Date;
12 to: Date;
13}, dateLib?: import("../classes/DateLib.js").DateLib): boolean;