interface StateUpdate {
    actions: StateUpdateAction[];
    version: number;
}

Properties

Properties

Update actions to be performed on the State.

version: number

Expected version of the State on which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error is returned.

Generated using TypeDoc