Setup HashLink VM
    Preparing search index...

    Class Release

    Represents a GitHub release.

    Index

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    Properties

    assets: ReleaseAsset[]

    The associated assets.

    version: string

    The version number.

    Accessors

    • get exists(): boolean

      Value indicating whether this release exists.

      Returns boolean

    • get isSource(): boolean

      Value indicating whether this release is provided as source code.

      Returns boolean

    • get tag(): string

      The associated Git tag.

      Returns string

    • get url(): URL

      The download URL.

      Returns URL

    Methods

    • Gets the asset corresponding to the specified platform.

      Parameters

      • platform: Platform

        The target platform.

      Returns null | ReleaseAsset

      The asset corresponding to the specified platform, or null if not found.

    • Finds a release that matches the specified version constraint.

      Parameters

      • constraint: string

        The version constraint.

      Returns null | Release

      The release corresponding to the specified constraint, or null if not found.

    • Gets the release corresponding to the specified version.

      Parameters

      • version: string

        The version number of a release.

      Returns null | Release

      The release corresponding to the specified version, or null if not found.