Store<Error extends Object, State extends Object> constructor

Store<Error extends Object, State extends Object>(
  1. State initialState
)

initialState Start this store with a value defalt.

Implementation

Store(State initialState) {
  _mutableObjects = _MutableObjects<Error, State>(initialState);
  initStore();
}