Type Alias ReplaceDataStorageOperation

ReplaceDataStorageOperation: {
    operation: "replace";
    value: JSONSerializable;
}

Sets the current value of the key to value.

Type declaration

  • Readonlyoperation: "replace"
  • Readonlyvalue: JSONSerializable

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

DataStorageOperation for all possible operation subtypes.