@yorkie-js/sdk
    Preparing search index...

    Interface StoredChange

    StoredChange is one persisted local change, tagged with the clientSeq it carries. The sequence is what lets a store drop changes a sync has already acknowledged, and what lets a restore detect a hole rather than replaying a discontinuous run.

    interface StoredChange {
        bytes: Uint8Array;
        clientSeq: number;
    }
    Index

    Properties

    Properties

    bytes: Uint8Array
    clientSeq: number