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