Enumeration MutationType

Possible types for SubscriptionCallback

Enumeration Members

Enumeration Members

direct: "direct"

Direct mutation of the state:

  • store.name = 'new name'
  • store.$state.name = 'new name'
  • store.list.push('new item')
patchFunction: "patch function"

Mutated the state with $patch and a function

  • store.$patch(state => state.name = 'newName')
patchObject: "patch object"

Mutated the state with $patch and an object

  • store.$patch({ name: 'newName' })

Generated using TypeDoc