UNPKG

255 BTypeScriptView Raw
1import SemVer = require('../classes/semver');
2import semver = require('../index');
3
4/**
5 * v1 != v2 The opposite of eq.
6 */
7declare function neq(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean;
8
9export = neq;