Type Alias UpdateDataStorageOperation

UpdateDataStorageOperation: {
    operation: "update";
    value: JSONSerializable;
}

Dict only: Updates the dictionary with the specified elements given in value creating new keys, or updating old ones if they previously existed.

Type declaration

  • Readonlyoperation: "update"
  • Readonlyvalue: JSONSerializable

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

DataStorageOperation for all possible operation subtypes.