Type Alias LeftShiftDataStorageOperation

LeftShiftDataStorageOperation: {
    operation: "left_shift";
    value: number;
}

Applies a bitwise left-shift to the current value of the key by value.

Type declaration

  • Readonlyoperation: "left_shift"
  • Readonlyvalue: number

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

DataStorageOperation for all possible operation subtypes.