Encrypted Pouch - v0.1.0
    Preparing search index...

    Interface SyncInfo

    Information about a sync operation

    interface SyncInfo {
        direction: "push" | "pull" | "both";
        change: {
            docs_read?: number;
            docs_written?: number;
            doc_write_failures?: number;
            errors?: any[];
        };
    }
    Index

    Properties

    Properties

    direction: "push" | "pull" | "both"

    Direction of sync: push to remote, pull from remote, or bidirectional

    change: {
        docs_read?: number;
        docs_written?: number;
        doc_write_failures?: number;
        errors?: any[];
    }

    Details about the changes that occurred

    Type Declaration

    • Optionaldocs_read?: number

      Number of documents read during sync

    • Optionaldocs_written?: number

      Number of documents written during sync

    • Optionaldoc_write_failures?: number

      Number of document write failures

    • Optionalerrors?: any[]

      Array of errors that occurred