ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface GithubRelease

    The subset of the GitHub release payload this module consumes.

    interface GithubRelease {
        tag_name: string;
        html_url: string;
        draft: boolean;
        prerelease: boolean;
        body?: null | string;
    }
    Index

    Properties

    tag_name: string

    Release tag, typically v1.2.3.

    html_url: string

    Public URL of the release page.

    draft: boolean

    True for unpublished drafts.

    prerelease: boolean

    True for pre-releases.

    body?: null | string

    Release notes markdown. The API sends null when the body is empty.