Nyora (JavaScript) - v0.1.1
    Preparing search index...

    Interface OtaArtifact

    A single downloadable OTA artifact described in the manifest.

    interface OtaArtifact {
        url: string;
        sha256?: string;
        bytes?: number;
    }
    Index

    Properties

    Properties

    url: string

    Absolute URL to download the artifact from.

    sha256?: string

    Expected lowercase hex SHA-256 of the artifact bytes.

    bytes?: number

    Artifact size in bytes, if advertised.