Inserts contents into a CRDT object. The obj property specifies the object on which to perform the operation.

interface JsonCodecObjectOperation<T> {
    obj: JsonCodecTimestamp;
    op: T;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

Object on which to perform the operation.

For "val" CRDT object, if omitted, or set to falsy value, or equal to origin [0, 0], the "set" operation is applied to the root object, which is LWW Register of a pointer to another CRDT data type.

op: T

Mnemonic.