Type Alias MultiplyDataStorageOperation
MultiplyDataStorageOperation : {
operation: "mul";
value: number;
}
operation: "mul";
value: number;
}
Type declaration
Readonly
operation: "mul"Readonly
value: numberA value for the operation to apply against the current data storage value.
See
DataStorageOperation for all possible operation subtypes.
Multiplies the current value of the key by
value
.