Type Alias PopDataStorageOperation

PopDataStorageOperation: {
    operation: "pop";
    value: JSONSerializable;
}

List or Dict only: for lists it will remove the index of the value given. For dicts it removes the element with the specified key of value.

Type declaration

  • Readonlyoperation: "pop"
  • Readonlyvalue: JSONSerializable

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

DataStorageOperation for all possible operation subtypes.