Type Alias XorDataStorageOperation

XorDataStorageOperation: {
    operation: "xor";
    value: number;
}

Applies a bitwise XOR to the current value of the key with value.

Type declaration

  • Readonlyoperation: "xor"
  • Readonlyvalue: number

    A value for the operation to apply against the current data storage value.

DataStorageOperation for all possible operation subtypes.