Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface VersionInfoInterface

Software version of NavVis IVION according to the https://semver.org/ scheme.

Hierarchy

  • VersionInfoInterface

Index

Properties

major

major: number

The NavVis IVION major version number, corresponds to the first digit in version like 1.x.x

minor

minor: number

The NavVis IVION minor version number, corresponds to the middle digit in version like x.2.x

revision

revision: number

The NavVis IVION revision number, corresponds to the last digit in version like x.x.3

Methods

compareTo

  • compareTo(major: number, minor: number, revision: number): number
  • Compare this version against the version specified by the provided parameters. Returns a negative number if this version is lower than the one specified by the provided parameters, a positive number if this version is higher than the one specified by the provided parameters, or 0 if they are equivalent.

    Parameters

    • major: number

      The major version number to compare with

    • minor: number

      The minor version number to compare with

    • revision: number

      The revision number to compare with

    Returns number

Generated using TypeDoc