Interface EntityEventPayload<V>

Event payload for a CRDT entity.

interface EntityEventPayload {
    ops: readonly EntityEventOp<V>[];
    type?: string;
}

Type Parameters

  • V

Properties

Properties

ops: readonly EntityEventOp<V>[]

Operations to upsert tagged values into given attributes, and delete existing values at given parent link indices.

type?: string

Type of the entity.

Generated using TypeDoc