@sovereignbase/convergent-replicated-struct
    Preparing search index...

    Type Alias CRStructSnapshotEntry<V>

    Represents the serialized state for a single field.

    type CRStructSnapshotEntry<V> = {
        predecessor: string;
        tombstones: string[];
        uuidv7: string;
        value: V;
    }

    Type Parameters

    • V
    Index

    Properties

    predecessor: string

    The predecessor identifier for the current winning value.

    tombstones: string[]

    Serialized overwritten identifiers for the field.

    uuidv7: string

    The identifier of the current winning value.

    value: V

    The serialized current winning value.