Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface StoreParams<ST>

To define the parts that make a store. Actions are just keys to invoke a mutation. Reducer are pure function calls that do the mutation. State is the object that contains the data after mutation.

Type parameters

  • ST

Hierarchy

  • StoreParams

Index

Properties

Properties

actions

actions: {}

Actions are just keys to invoke a mutation.

Type declaration

reducer

reducer: {}

Reducer are pure function calls that do the mutation.

Type declaration

state

state: ST

State is the object that contains the data after mutation.

Generated using TypeDoc