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

    Type Alias CRStructStateEntry<V>

    Represents the internal replicated state for a single field.

    type CRStructStateEntry<V> = {
        predecessor: string;
        tombstones: Set<string>;
        uuidv7: string;
        value: V;
    }

    Type Parameters

    • V
    Index

    Properties

    predecessor: string

    The predecessor identifier for the current winning value.

    tombstones: Set<string>

    Identifiers known to have been overwritten for the field.

    uuidv7: string

    The identifier of the current winning value.

    value: V

    The current winning value.