UNPKG

363 BTypeScriptView Raw
1import SemVer = require('../classes/semver');
2import semver = require('../index');
3
4/**
5 * v1 == v2 This is true if they're logically equivalent, even if they're not the exact same string. You already know how to compare strings.
6 */
7declare function eq(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean;
8
9export = eq;