backblaze-labs/b2-action - v0.1.0
    Preparing search index...

    Interface DownloadedFile

    One entry in DownloadResult.files.

    interface DownloadedFile {
        contentSha1: string | null;
        fileName: string;
        localPath: string;
        size: number;
    }
    Index

    Properties

    contentSha1: string | null

    Remote SHA-1, or null if the file was multipart-uploaded (B2 doesn't store a whole-file SHA-1 in that case).

    fileName: string

    B2 file name (the key that was fetched).

    localPath: string

    Absolute path on the runner where the body landed.

    size: number

    Byte size of the downloaded body.