Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/semver-diff/index.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
58 lines (44 sloc)
1.06 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare namespace semverDiff { | |
type Result = | |
| 'major' | |
| 'premajor' | |
| 'minor' | |
| 'preminor' | |
| 'patch' | |
| 'prepatch' | |
| 'prerelease' | |
| 'build'; | |
} | |
/** | |
Get the diff type of two [semver](https://github.com/npm/node-semver) versions: `0.0.1 0.0.2` → `patch`. | |
@returns The difference type between two semver versions, or `undefined` if they're identical or the second one is lower than the first. | |
@example | |
``` | |
import semverDiff = require('semver-diff'); | |
semverDiff('1.1.1', '1.1.2'); | |
//=> 'patch' | |
semverDiff('1.1.1-foo', '1.1.2'); | |
//=> 'prepatch' | |
semverDiff('0.0.1', '1.0.0'); | |
//=> 'major' | |
semverDiff('0.0.1-foo', '1.0.0'); | |
//=> 'premajor' | |
semverDiff('0.0.1', '0.1.0'); | |
//=> 'minor' | |
semverDiff('0.0.1-foo', '0.1.0'); | |
//=> 'preminor' | |
semverDiff('0.0.1-foo', '0.0.1-foo.bar'); | |
//=> 'prerelease' | |
semverDiff('0.1.0', '0.1.0+foo'); | |
//=> 'build' | |
semverDiff('0.0.1', '0.0.1'); | |
//=> undefined | |
semverDiff('0.0.2', '0.0.1'); | |
//=> undefined | |
``` | |
*/ | |
declare function semverDiff( | |
versionA: string, | |
versionB: string | |
): semverDiff.Result | undefined; | |
export = semverDiff; |