@couchbase/lite-js
    Preparing search index...

    Interface ReplicatorStatus

    Replication status and progress.

    interface ReplicatorStatus {
        error?: Error;
        pulledRevisions?: number;
        pushedRevisions?: number;
        status?: "connecting" | "busy" | "idle" | "stopped";
    }
    Index

    Properties

    error?: Error

    Fatal error, if any.

    pulledRevisions?: number

    The number of documents downloaded from the server so far.

    pushedRevisions?: number

    The number of documents uploaded to the server so far.

    status?: "connecting" | "busy" | "idle" | "stopped"

    The current state of the replicator.