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

    Interface SnapshotEvent

    SnapshotEvent is an event that occurs when a snapshot is received from the server.

    interface SnapshotEvent {
        source: Remote;
        type: Snapshot;
        value: {
            serverSeq: string;
            snapshot: string | undefined;
            snapshotVector: string;
        };
    }

    Hierarchy

    • BaseDocEvent
      • SnapshotEvent
    Index

    Properties

    Properties

    source: Remote
    type: Snapshot
    value: {
        serverSeq: string;
        snapshot: string | undefined;
        snapshotVector: string;
    }