Type Alias LeftShiftDataStorageOperation
LeftShiftDataStorageOperation : {
operation: "left_shift";
value: number;
}
operation: "left_shift";
value: number;
}
Type declaration
Readonly
operation: "left_shift"Readonly
value: numberA value for the operation to apply against the current data storage value.
See
DataStorageOperation for all possible operation subtypes.
Applies a bitwise left-shift to the current value of the key by
value
.