@hashgraph/solo
    Preparing search index...

    A standard representation of a semantic version number.

    Index

    Constructors

    • Constructs a new instance of a SemanticVersion with the supplied components.

      Parameters

      • _major: number

        the major version.

      • _minor: number

        the minor version.

      • _patch: number

        the patch version.

      • _prerelease: string = ''

        the optional prerelease specifier.

      • _build: string = ''

        the optional build specifier.

      Returns SemanticVersion

    Properties

    ZERO: SemanticVersion = ...

    Constant value representing a zero version number.

    Accessors

    Methods

    • Parses a semantic version string into the individual components.

      Parameters

      • version: string

        a semantic version number in string form.

      Returns SemanticVersion

      an instance of a SemanticVersion containing the individual components.

      InvalidSemanticVersionException if the supplied string cannot be parsed as a semantic version number.

      Error if the {@code version} argument is a {@code null} reference.