UNPKG

314 BTypeScriptView Raw
1import Range = require('../classes/range');
2import semver = require('../index');
3
4/**
5 * Return true if any of the ranges comparators intersect
6 */
7declare function intersects(
8 range1: string | Range,
9 range2: string | Range,
10 optionsOrLoose?: boolean | semver.Options,
11): boolean;
12
13export = intersects;