Ditto JS SDK v5.0.0
    Preparing search index...

    Type Alias AttachmentFetchEventProgress

    An attachment fetch event used when the attachment's download progressed but is not yet complete.

    type AttachmentFetchEventProgress = {
        downloadedBytes: number | bigint;
        totalBytes: number | bigint;
        type: "Progress";
    }
    Index

    Properties

    downloadedBytes: number | bigint
    totalBytes: number | bigint
    type: "Progress"